Get Secondary Token
Get secondary market information for a specific token and user.
Endpoint
GET /v2/users/{user_id}/secondary-markets/tokens/{token_id}
Headers
| Header | Value |
|---|---|
| Authorization | Bearer {token} |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| user_id | string | Yes | The unique identifier of the user |
| token_id | string | Yes | The unique identifier of the token |
Query Parameters
This endpoint is a GET: paging and filters travel in the query string, not in a JSON body. There is no request body.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | integer | Yes | Page number for pagination |
| per_page | integer | Yes | Number of items per page |
Response
Returns secondary market information for the specified token and user.
Success Response (200 OK)
{
"data": [
{
"deal_id": "number",
"quantity": "number",
"price": {
"amount": "number",
"decimal": "number",
"symbol": "string"
},
"seller_id": "string",
"seller_name": "string",
"buyer_id": "string",
"buyer_name": "string",
"status": "string",
"transaction_hash": "string",
"created_at": "string",
"updated_at": "string"
}
],
"total": "number",
"page": 1,
"per_page": 10
}
Example
Request
curl "\{\{baseUrl\}\}/v2/users/680c02896d91ca0145cfeb81/secondary-markets/tokens/68ae06cfcccf4e8fc19362d1?page=1&per_page=10" \
-H "Authorization: Bearer \{\{token\}\}"
Response
{
"data": [
{
"deal_id": 13,
"quantity": 25,
"price": {
"amount": 12.5,
"decimal": 6,
"symbol": "USDT"
},
"seller_id": "680c02896d91ca0145cfeb82",
"seller_name": "John Doe",
"buyer_id": "680c02896d91ca0145cfeb81",
"buyer_name": "Jane Smith",
"status": "completed",
"transaction_hash": "0x1234567890abcdef1234567890abcdef12345678",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T11:30:00Z"
}
],
"total": 1,
"page": 1,
"per_page": 10
}
Error Responses
400 Bad Request
{
"error": "Invalid request parameters"
}
401 Unauthorized
{
"error": "Authentication required"
}
403 Forbidden
{
"error": "Access denied"
}
404 Not Found
{
"error": "User or token not found"
}
500 Internal Server Error
{
"error": "Internal server error"
}