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
Response
Whether the request succeeded.
Array of allowance statuses.Show AllowanceStatus properties
Target contract: ctf_exchange, neg_risk_ctf_exchange, or neg_risk_adapter.
Whether the allowance is sufficient for trading.
Human-readable allowance status.
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