Get Single Market by Node ID
Get a single market associated with a node.
Endpoint: GET /api/v1/integration/markets/nodes/{node_id}/single
Authentication: Required (Bearer token)
Required Headers:
Authorization: Bearer <access_token>
X-Target-Server: integration
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
node_id | string (UUID) | Yes | Node ID |
Response
Status: 200 OK
Returns the market object.
{
"id": "262bed05-5a0e-4fff-8171-39fafab66b0c",
"node_id": "e40efce4-38a3-46c4-a202-e8db95d0409c",
"domain": "https://tokenizationtr.com",
"webhook": {
"host": "http://localhost:9091",
"path": "/%s/yol/bul",
"method": "GET",
"authentication": {
"type": 1,
"username": "Baba",
"password": "Aku"
},
"timeout": 30
},
"created_at": "2025-12-11T14:00:26.023564Z",
"updated_at": "2025-12-11T14:03:47.361795Z"
}
Example cURL Request
curl -X GET 'https://<base-url>/api/v1/integration/markets/nodes/e40efce4-38a3-46c4-a202-e8db95d0409c/single' \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"