Cryptomus · Schema
Cryptomus Payout Object
Schema for a Cryptomus payout object
CryptocurrencyPaymentsInvoicesPayoutsExchange RatesCrypto Gateway
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | Payout unique identifier |
| amount | string | Payout amount in specified currency |
| currency | string | Currency code |
| network | string | Blockchain network code |
| address | string | Recipient wallet address |
| txid | stringnull | Blockchain transaction ID (null if pending) |
| status | string | Payout status |
| is_final | boolean | Whether the payout is finalized |
| balance | number | Remaining merchant balance |
| payer_currency | string | Actual cryptocurrency used for payout |
| payer_amount | string | Amount in payer currency |
| created_at | string | Payout creation timestamp |
| updated_at | string | Payout last update timestamp |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/cryptomus/refs/heads/main/json-schema/payout.json",
"title": "Cryptomus Payout Object",
"description": "Schema for a Cryptomus payout object",
"type": "object",
"properties": {
"uuid": {
"type": "string",
"format": "uuid",
"description": "Payout unique identifier"
},
"amount": {
"type": "string",
"description": "Payout amount in specified currency"
},
"currency": {
"type": "string",
"description": "Currency code"
},
"network": {
"type": "string",
"description": "Blockchain network code"
},
"address": {
"type": "string",
"description": "Recipient wallet address"
},
"txid": {
"type": ["string", "null"],
"description": "Blockchain transaction ID (null if pending)"
},
"status": {
"type": "string",
"enum": ["process", "check", "paid", "fail", "cancel", "system_fail"],
"description": "Payout status"
},
"is_final": {
"type": "boolean",
"description": "Whether the payout is finalized"
},
"balance": {
"type": "number",
"description": "Remaining merchant balance"
},
"payer_currency": {
"type": "string",
"description": "Actual cryptocurrency used for payout"
},
"payer_amount": {
"type": "string",
"description": "Amount in payer currency"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Payout creation timestamp"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Payout last update timestamp"
}
},
"required": ["uuid", "amount", "currency", "address", "status", "is_final", "balance", "payer_currency", "payer_amount"]
}