Skip to main content
GET
/
payments
/
{uniqid}
Get payment
curl --request GET \
  --url https://api.shoppex.io/dev/v1/payments/{uniqid} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "uniqid": "<string>",
    "type": "<string>",
    "shop_id": "<string>",
    "customer_id": "<string>",
    "currency": "<string>",
    "gateway": "<string>",
    "crypto_address": "<string>",
    "crypto_amount": 123,
    "crypto_received": 123,
    "crypto_uri": "<string>",
    "crypto_confirmations_needed": 123,
    "quantity": 123,
    "total": 123,
    "total_display": 123,
    "exchange_rate": 123,
    "crypto_exchange_rate": 123,
    "customer_email": "<string>",
    "custom_fields": [
      "<unknown>"
    ],
    "is_developer_invoice": true,
    "developer_title": "<string>",
    "developer_webhook": "<string>",
    "developer_return_url": "<string>",
    "developer_cancel_url": "<string>",
    "status": "<string>",
    "created_at": 123,
    "updated_at": 123,
    "gateways": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

Use your API key with the Bearer scheme. Get your key from Dashboard → Settings → API Keys. Format: Authorization: Bearer shx_...

Path Parameters

uniqid
string
required

Payment uniqid

Response

Default Response

data
object
required