Skip to main content
FuseFuse
IntegrationsOpenaiActions

List OpenAI models

List models available to the OpenAI API key.

Agent markdown

models.list · OpenAI · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
modelsarray<object>YesmaxItems 1000
models[]objectYesadditionalProperties false
models[].idstringYesminLength 1; maxLength 200
models[].owned_bystringNomaxLength 200

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {}
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "models": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "owned_by": {
            "type": "string",
            "maxLength": 200
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 1000
    }
  },
  "required": [
    "models"
  ]
}