Skip to main content
GET
/
balance
/
settlement
Get settlement balance
curl --request GET \
  --url https://api.context.markets/v2/balance/settlement \
  --header 'Authorization: Bearer <token>'
{
  "balance": "1000000",
  "account": "0x1111111111111111111111111111111111111111",
  "token": "0x1111111111111111111111111111111111111111"
}

Documentation Index

Fetch the complete documentation index at: https://docs.context.markets/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Query Parameters

address
string
required

EVM address

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x1111111111111111111111111111111111111111"

tokenAddress
string
required

EVM address

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x1111111111111111111111111111111111111111"

Response

Settlement balance

balance
string
required

Integer encoded as decimal string

Pattern: ^\d+$
Example:

"1000000"

account
string
required

EVM address

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x1111111111111111111111111111111111111111"

token
string
required

EVM address

Pattern: ^0x[a-fA-F0-9]{40}$
Example:

"0x1111111111111111111111111111111111111111"