cURL
curl --request GET \ --url https://{controlPlaneURL}/api/llm/models \ --header 'Authorization: Bearer <token>'
{ "object": "list", "data": [ { "id": "<string>", "object": "model", "created": 123, "owned_by": "<string>" } ] }
Lists the models that the requesting user is authorized to access.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A list of models the user is authorized to access
The object type, list in this case
list
Array of model objects
Show child attributes
TrueFoundry Model Name
The object type, model in this case
model
Unix timestamp (in seconds) when the model was added to the system
The organization that owns the model (provider name or "virtual")
Was this page helpful?