List Accounts in Group
POSThttps://api.gemini.com/v1/account/list
A Master API key can be used to get the accounts within the group. A maximum of 500 accounts can be listed in a single API call.
POST
curl --request POST \
--url https://api.gemini.com/v1/account/list \
--header 'Content-Type: application/json' \
--header 'X-GEMINI-APIKEY: <string>' \
--header 'X-GEMINI-PAYLOAD: <string>' \
--header 'X-GEMINI-SIGNATURE: <string>' \
--data '
{
"request": "/v1/account/list",
"nonce": "<nonce>",
"limit_accounts": 100,
"timestamp": 1632485834721
}
'Roles
The API key you use to access this endpoint must be a Master level key. See Roles for more information.
The OAuth scope must have account:read assigned to access this endpoint. See OAuth Scopes for more information.
Headers
Request Body
Responses
The response will be a JSON object containing all accounts within the master group
Last modified on