List all models

GET/genai/{connection_id}/model

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection

Returns

idstring
namestring
descriptionstring
max_tokensnumber
The maximum number of tokens that the model can process in a single response. This limits ensures computational efficiency and resource management.
web_urlstring
has_temperatureboolean
Controls randomness of responses. A lower temperature leads to more predictable outputs while a higher temperature results in more varies and sometimes more creative outputs. 0-1
const options = {
  method: 'GET',
  url: 'https://api.unified.to/genai/5de520f96e439b002043d8dc/model',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-05-29T17:50:55.576Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?