get_marketplace_details
pricempire.comReturns detailed marketplace records from https://pricempire.com, including fees, payment methods, pros and cons, supported games, Trustpilot ratings, and availability metrics.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_marketplace_details?
Returns detailed marketplace records from https://pricempire.com, including fees, payment methods, pros and cons, supported games, Trustpilot ratings, and availability metrics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass marketplace_slug, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"source": "<string>",
"marketplace": {},
"requested_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/55c637e4-f29b-4a0c-a509-6843c2c4f1d8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "55c637e4-f29b-4a0c-a509-6843c2c4f1d8",
"variables": {
"marketplace_slug": "skinport",
"timeout_seconds": 30
}
}'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="55c637e4-f29b-4a0c-a509-6843c2c4f1d8") — the "get_marketplace_details" function, which returns detailed marketplace records from https://pricempire.com, including fees, payment methods, pros and cons, supported games, Trustpilot ratings, and availability metrics.. It takes marketplace_slug (str), timeout_seconds (int). Return the result as structured JSON.