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 response is of type object.
object
Was this page helpful?