Marketplace
No threads yet
Live

get_gpu_offerings

coreweave.com

Returns every current CoreWeave GPU offering across North America and Europe, including compute specifications, hourly price, pricing tenor, and sales-inquiry status. Reads https://www.coreweave.com with one pricing-page request.

Parameters0
Runs9
Updated10d ago
Operational9 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 get_gpu_offerings?

Returns every current CoreWeave GPU offering across North America and Europe, including compute specifications, hourly price, pricing tenor, and sales-inquiry status. Reads https://www.coreweave.com with one pricing-page request. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "regions": [
    "<string>"
  ],
  "offerings": [
    {
      "vcpus": 0,
      "region": "<string>",
      "vram_gb": 0,
      "gpu_count": 0,
      "gpu_model": "<string>",
      "pricing_tenor": "<string>",
      "system_ram_gb": 0,
      "price_per_hour": "<string>",
      "local_storage_tb": 0,
      "requires_sales_inquiry": true
    }
  ],
  "source_url": "<string>",
  "offering_count": 0,
  "pricing_tenors": [
    "<string>"
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e9918b04-b58a-43f4-9bb2-6a7822208862/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e9918b04-b58a-43f4-9bb2-6a7822208862",
    "variables": {}
}'

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="e9918b04-b58a-43f4-9bb2-6a7822208862") — the "get_gpu_offerings" function, which returns every current CoreWeave GPU offering across North America and Europe, including compute specifications, hourly price, pricing tenor, and sales-inquiry status. Reads https://www.coreweave.com with one pricing-page request..

It takes no parameters. Return the result as structured JSON.