Accounts list
GEThttps://vega-data.nodes.guru:3008/accounts
Get a list of accounts. This endpoint may not be exposed by mainnet nodes.
Request
Query Parameters
party string
market string
Responses
- 200
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
accounts object[]
{
"accounts": [
{
"asset": "string",
"balance": "string",
"market": "string",
"party": "string",
"type": "string"
}
]
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
- curl
- python
- go
- nodejs
- CURL
curl -L -X GET 'https://vega-data.nodes.guru:3008/accounts' \
-H 'Accept: application/json'