Marketplace
No threads yet
Live

get_seller_profile

cardmarket.com

Returns a public seller profile from https://cardmarket.com with username, profile URL, account details, ratings, activity totals, offer counts, and public business information when available.

Parameters2
Runs13
Updated3d ago
Operational13 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_seller_profile?

Returns a public seller profile from https://cardmarket.com with username, profile URL, account details, ratings, activity totals, offer counts, and public business information when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass username, game and get the result back without maintaining a scraper.

Response

{
  "game": "<string>",
  "details": {},
  "username": "<string>",
  "profile_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b0e95667-0056-42c4-adc4-5c14e1f31e85/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b0e95667-0056-42c4-adc4-5c14e1f31e85",
    "variables": {
        "username": "snooop",
        "game": "Magic"
    }
}'

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="b0e95667-0056-42c4-adc4-5c14e1f31e85") — the "get_seller_profile" function, which returns a public seller profile from https://cardmarket.com with username, profile URL, account details, ratings, activity totals, offer counts, and public business information when available..

It takes username (str), game (str). Return the result as structured JSON.