List the models available to the credential, or retrieve one, in the OpenAI response shape. The catalog is the environment’s models narrowed by the key’s restrictions — the same set returned by the native GET /v1/models.

Authentication

Authenticated with a secret key (rd_sk_…) or a client token of any scope. A publishable key is rejected 403.

List models

GET /openai/v1/models200 OK:
id is the qualified provider/model id; owned_by is the provider.

Retrieve a model

{model} accepts either the bare provider-native name (e.g. gpt-4o) or the qualified id (e.g. openai/gpt-4o). 200 OK:
A model that does not exist or is not visible to the credential returns 404 invalid_request_error (model_not_found).

Errors

Errors use the OpenAI envelope; see the error mapping on the chat-completions page.