get_ai_gpu_pricing
together.aiReturns every GPU offering and pricing tenor from Together AI's Dedicated Inference and GPU Clusters pricing tables. Reads https://www.together.ai and reports per-GPU hourly USD rates or the site's availability label.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_ai_gpu_pricing?
Returns every GPU offering and pricing tenor from Together AI's Dedicated Inference and GPU Clusters pricing tables. Reads https://www.together.ai and reports per-GPU hourly USD rates or the site's availability label. 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
{
"unit": "<string>",
"count": 0,
"currency": "<string>",
"offerings": [
{
"vendor": "<string>",
"section": "<string>",
"hardware": "<string>",
"gpu_model": "<string>",
"availability": "<string>",
"pricing_type": "<string>",
"price_display": "<string>",
"pricing_tenor": "<string>",
"price_per_gpu_hour_usd": 0
}
],
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/62775cde-96c2-4f0b-8af7-23c11ea8de05/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "62775cde-96c2-4f0b-8af7-23c11ea8de05",
"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="62775cde-96c2-4f0b-8af7-23c11ea8de05") — the "get_ai_gpu_pricing" function, which returns every GPU offering and pricing tenor from Together AI's Dedicated Inference and GPU Clusters pricing tables. Reads https://www.together.ai and reports per-GPU hourly USD rates or the site's availability label.. It takes no parameters. Return the result as structured JSON.