Developer documentation

Preview documentation

Veyro API preview.

Private-beta reference material for the future Veyro Connect API. Endpoints, schemas and availability may change before public release.

Private beta

Overview

Veyro Connect is intended to expose payment infrastructure through versioned REST resources. This documentation uses demo identifiers and does not describe a publicly operational API.

Authentication

Future requests are designed to use scoped bearer keys. Never expose a secret key in client-side code.

curl https://api.veyropay.online/v1/payments \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Idempotency-Key: req_demo_001" \ -d '{
    "amount": 250,
    "currency": "EUR",
    "destination_currency": "USD"
  }'

Demo request · Public API access is not yet available.

Environments

Sandboxhttps://api.veyropay.online/v1Planned private beta
ProductionNot publicly availableSubject to approval

Idempotency

Send a unique Idempotency-Key with create operations so a retry does not create a duplicate instruction.

Errors

Errors are intended to include a stable code, human-readable detail and request identifier. Never branch only on message text.

Webhooks

Event signatures and timestamps are intended to help verify origin and prevent replay. Endpoint requirements remain in preview.

Rate limits

Private-beta limits will be communicated per environment with standard retry guidance.

Versioning

Breaking changes are intended to ship behind explicit API versions with a documented migration window.

Questions: developers@veyropay.online