GET
/
openai
/
v1
/
models
/
{model}
curl --request GET \
  --url https://api.groq.com/openai/v1/models/{model} \
  --header 'Authorization: Bearer <token>'
{
  "created": 123,
  "id": "<string>",
  "object": "model",
  "owned_by": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

model
string
required

The model to get

Response

200 - application/json

OK

Describes an OpenAI model offering that can be used with the API.