Paycio API Documentation

Authentication

Every API call requires two headers for authentication:

  • PUBLICKEY: A public key associated with your account.
  • SIGN: A unique signature generated for each API request. Make sure to generate a fresh signature for every call.
Headers Example: PUBLICKEY: <your-public-key> SIGN: <your-signature> Content-Type: application/json
  1. 1. Get Info
  2. 2. Get User Info & KYC Information
  3. 3. Get Wallet Address
  4. 4. Get Supported Currencies
  5. 5. Get Account Balances
  6. 6. Request Payment via PayCIO Application
  7. 7. Request Payment via Wallet Address

1. Get My Info

Retrieve account information, including account status.

Endpoint

POST /api/v1/getmyinfo

Request Example

curl 
  --location --request POST 'https://sandbox-api.paycio.ae/api/v1/getmyinfo' \
  --header 'PUBLICKEY: <your-public-key>' \
  --header 'SIGN: <generated-signature>'

Response Example

{
  "account": {
  "status": "active",
  "name": "Merchant Name",
  "email": "[email protected]"
  }
  }

For any issues or further information, feel free to contact our support at [email protected].

Footer Image Paycio