Marketplace
No threads yet
Live

list_api_models

developers.openai.com

Returns the current featured OpenAI API models with pricing and specifications from the platform models page at https://openai.com.

Parameters1
Runs3
Updated53m ago
Operational3 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_api_models?

Returns the current featured OpenAI API models with pricing and specifications from the platform models page at https://openai.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "models": [
    {
      "name": "<string>",
      "alias": "<string>",
      "tools": [
        "<string>"
      ],
      "model_id": "<string>",
      "source_url": "<string>",
      "description": "<string>",
      "input_price": "<string>",
      "output_price": "<string>",
      "context_length": "<string>",
      "reasoning_levels": [
        "<string>"
      ],
      "max_output_tokens": "<string>",
      "knowledge_cutoff_date": "<string>"
    }
  ],
  "source_page": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/21481a62-59b8-403c-a8c7-2e0185882820/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "21481a62-59b8-403c-a8c7-2e0185882820",
    "variables": {
        "query": ""
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="21481a62-59b8-403c-a8c7-2e0185882820") — the "list_api_models" function, which returns the current featured OpenAI API models with pricing and specifications from the platform models page at https://openai.com..

It takes query (str). Return the result as structured JSON.