Skip to main content
GET
/
v1
/
gates
/
{gate_id}
curl https://xenarch.dev/v1/gates/7f3a1b2c-9d4e-4a8b-b6f1-2c3d4e5f6a7b
{
  "gate_id": "7f3a1b2c-9d4e-4a8b-b6f1-2c3d4e5f6a7b",
  "status": "pending",
  "price_usd": "0.003",
  "created_at": "2026-04-10T14:30:00Z",
  "paid_at": null
}
curl https://xenarch.dev/v1/gates/7f3a1b2c-9d4e-4a8b-b6f1-2c3d4e5f6a7b
{
  "gate_id": "7f3a1b2c-9d4e-4a8b-b6f1-2c3d4e5f6a7b",
  "status": "pending",
  "price_usd": "0.003",
  "created_at": "2026-04-10T14:30:00Z",
  "paid_at": null
}

Notes

  • Public endpoint — no authentication required (gate IDs are UUIDs, unguessable)
  • Status values: pending, paid, expired
  • Expired gates return status expired (auto-detected when expires_at has passed)

Path Parameters

gate_id
string<uuid>
required

Response

Successful Response

gate_id
string<uuid>
required
status
string
required
price_usd
string
required
Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
created_at
string<date-time>
required
paid_at
string<date-time> | null
required