get_gpu_instance_offerings
crusoe.aiReturns all GPU instance offerings from https://crusoe.ai with separate on-demand and spot tenor entries, per-GPU-hour prices where listed, and model specifications from the Crusoe Cloud pricing table.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_gpu_instance_offerings?
Returns all GPU instance offerings from https://crusoe.ai with separate on-demand and spot tenor entries, per-GPU-hour prices where listed, and model specifications from the Crusoe Cloud pricing table. 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
{
"offerings": [
{
"tenor": "<string>",
"memory": "<string>",
"region": "<string>",
"currency": "<string>",
"gpu_count": 0,
"gpu_model": "<string>",
"price_unit": "<string>",
"details_url": "<string>",
"availability": "<string>",
"configuration": "<string>",
"price_display": "<string>",
"price_per_hour": 0
}
],
"source_url": "<string>",
"retrieved_at": "<string>",
"offering_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/404ce5e6-1570-44d3-b626-6da4c9af83ed/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "404ce5e6-1570-44d3-b626-6da4c9af83ed",
"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="404ce5e6-1570-44d3-b626-6da4c9af83ed") — the "get_gpu_instance_offerings" function, which returns all GPU instance offerings from https://crusoe.ai with separate on-demand and spot tenor entries, per-GPU-hour prices where listed, and model specifications from the Crusoe Cloud pricing table.. It takes no parameters. Return the result as structured JSON.