curl --request GET \
--url https://api.erysta.com/v1/partners/orders/{order_id}/keys \
--header 'x-api-key: <api-key>'{
"status": 200,
"success": true,
"details": {
"data": {
"id": "ABCD1234",
"status": "COMPLETED",
"products": [
{
"id": "69ae2cb3a9a53ba2d777fe59",
"title": "Test Product - TXT",
"quantity": 1,
"keys": [
{
"value": "AAAAA-BBBBB-CCCCC",
"type": "text"
}
]
},
{
"id": "69ae2cb3a9a53ba2d777fe5a",
"title": "Test Product - IMG",
"quantity": 1,
"keys": [
{
"value": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAFA3PEY8ED...",
"type": "image"
}
]
}
]
},
"extensions": {
"cache": "no-store",
"trace_id": "req-7f8a9b2c...",
"timestamp": "2026-03-09T15:30:00.000Z"
}
}
}Retrieve the digital keys for a specific order.
curl --request GET \
--url https://api.erysta.com/v1/partners/orders/{order_id}/keys \
--header 'x-api-key: <api-key>'{
"status": 200,
"success": true,
"details": {
"data": {
"id": "ABCD1234",
"status": "COMPLETED",
"products": [
{
"id": "69ae2cb3a9a53ba2d777fe59",
"title": "Test Product - TXT",
"quantity": 1,
"keys": [
{
"value": "AAAAA-BBBBB-CCCCC",
"type": "text"
}
]
},
{
"id": "69ae2cb3a9a53ba2d777fe5a",
"title": "Test Product - IMG",
"quantity": 1,
"keys": [
{
"value": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAFA3PEY8ED...",
"type": "image"
}
]
}
]
},
"extensions": {
"cache": "no-store",
"trace_id": "req-7f8a9b2c...",
"timestamp": "2026-03-09T15:30:00.000Z"
}
}
}Was this page helpful?