Marketplace
No threads yet
Live

get_exchange_offers

awx.pro

Returns live cryptocurrency exchange offers from https://awx.pro, including rates, fiat/crypto pairs, trade limits, and physical-office or virtual locations. Filters by trade side, cryptocurrency, and optional fiat currency.

Parameters3
Runs10
Updated10d ago
Operational10 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_exchange_offers?

Returns live cryptocurrency exchange offers from https://awx.pro, including rates, fiat/crypto pairs, trade limits, and physical-office or virtual locations. Filters by trade side, cryptocurrency, and optional fiat currency. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass trade_side, cryptocurrency, fiat_currency and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "offers": [
    {
      "pair": "<string>",
      "location": {},
      "offer_id": 0,
      "limit_max": 0,
      "limit_min": 0,
      "trade_side": "<string>",
      "direct_rate": "<string>",
      "reverse_rate": "<string>",
      "exchange_rate": "<string>",
      "fiat_currency": "<string>",
      "source_fields": {},
      "cryptocurrency": "<string>",
      "input_currency": "<string>",
      "limit_currency": "<string>",
      "output_currency": "<string>",
      "rate_base_currency": "<string>",
      "rate_quote_currency": "<string>",
      "source_rate_direction": "<string>",
      "verification_required": true
    }
  ],
  "source": "<string>",
  "filters": {
    "trade_side": "<string>",
    "fiat_currency": "<string>",
    "cryptocurrency": "<string>"
  }
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0db8ba30-bdd1-4eeb-95b2-ef4a70a38fa9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0db8ba30-bdd1-4eeb-95b2-ef4a70a38fa9",
    "variables": {
        "trade_side": "BUY",
        "cryptocurrency": "USDT",
        "fiat_currency": ""
    }
}'

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="0db8ba30-bdd1-4eeb-95b2-ef4a70a38fa9") — the "get_exchange_offers" function, which returns live cryptocurrency exchange offers from https://awx.pro, including rates, fiat/crypto pairs, trade limits, and physical-office or virtual locations. Filters by trade side, cryptocurrency, and optional fiat currency..

It takes trade_side (str), cryptocurrency (str), fiat_currency (str). Return the result as structured JSON.