Get data checksum
Retrieves a checksum for data verification, filtered by platform, collection, or identity. Use it to reconcile that the data on your side matches the data Turnqey holds.
Endpoint
http
GET /v1/api/checksumAuthentication: Bearer token.
Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
| platform | query | string | No | Trading platform identifier (for example, coinbase). |
| collection | query | string (uuid) | No | Collection UUID filter. |
| identity | query | string | No | Identity string filter. |
Example request
bash
curl -X GET 'https://api.turnqey.xyz/v1/api/checksum?platform=coinbase' \
-H 'accept: application/json' \
-H 'Authorization: Bearer <token>'Example response
json
{
"isError": false,
"message": "Success",
"result": {
"checksum": "a1b2c3d4e5f6",
"platform": "coinbase",
"generatedOn": "2023-01-15T14:30:00Z"
},
"statusCode": 200
}Errors
| Status | Meaning |
|---|---|
| 401 | Bearer token missing, expired, or invalid. |
See Errors and Retries for the full error envelope and retry guidance.