Skip to main content
GET /api/v1/approvals Check current token allowances for your wallet on Polymarket. Polymarket requires on-chain approval before trading.
This endpoint only supports Polymarket.

Parameters

exchange
string
required
Must be polymarket.

Response

success
boolean
Whether the request succeeded.
data
array
Array of allowance statuses.
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/approvals?exchange=polymarket"
{
  "success": true,
  "data": [
    { "token": "usdc", "target": "ctf_exchange", "approved": true, "details": "USDC approved for CTF Exchange (allowance: unlimited)" },
    { "token": "usdc", "target": "neg_risk_ctf_exchange", "approved": true, "details": "USDC approved for Neg Risk CTF Exchange (allowance: unlimited)" },
    { "token": "ctf", "target": "ctf_exchange", "approved": true, "details": "CTF approved for all on CTF Exchange" },
    { "token": "ctf", "target": "neg_risk_ctf_exchange", "approved": false, "details": "CTF not approved for Neg Risk CTF Exchange" }
  ]
}

See Also