list_gpu_offerings
nebius.comReturns every Nebius AI Cloud GPU offering as separate spot (preemptible) and on-demand price records, including vCPU/RAM details, availability, and USD per single-GPU-hour pricing from https://nebius.com.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_gpu_offerings?
Returns every Nebius AI Cloud GPU offering as separate spot (preemptible) and on-demand price records, including vCPU/RAM details, availability, and USD per single-GPU-hour pricing from https://nebius.com. 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
{
"count": 0,
"offerings": [
{
"vcpus": "<string>",
"ram_gb": "<string>",
"currency": "<string>",
"gpu_model": "<string>",
"availability": "<string>",
"billing_unit": "<string>",
"pricing_type": "<string>",
"price_per_hour": 0,
"source_pricing_type": "<string>",
"price_is_starting_at": true
}
],
"gpu_model_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/89cd8940-0ccf-4070-9b17-b91ddc642595/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "89cd8940-0ccf-4070-9b17-b91ddc642595",
"variables": {}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="89cd8940-0ccf-4070-9b17-b91ddc642595") — the "list_gpu_offerings" function, which returns every Nebius AI Cloud GPU offering as separate spot (preemptible) and on-demand price records, including vCPU/RAM details, availability, and USD per single-GPU-hour pricing from https://nebius.com.. It takes no parameters. Return the result as structured JSON.