Get Pay-in
Retrieve the full details of a pay-in by its ID, including current status and payment instructions.Endpoint
Request
Response
Response Fields
| Field | Type | Description |
|---|---|---|
payin_id | string | Unique pay-in identifier. |
quote_id | string | Associated quote ID. |
status | string | Current status: awaiting_deposit, processing, completed, failed. |
source_currency | string | Source fiat currency. |
destination_currency | string | Destination stablecoin. |
destination_network | string | Destination blockchain. |
destination_address | string | Recipient wallet address. |
source_amount | integer | Amount in smallest fiat unit. |
estimated_stablecoin_amount | string | Expected stablecoin in human-readable format. |
actual_stablecoin_amount | string | null | Actual amount if completed. |
payment_instructions | object | Bank transfer details. |
expires_at | string | ISO 8601 timestamp when pay-in window closes. |
created_at | string | ISO 8601 timestamp of creation. |
completed_at | string | null | ISO 8601 timestamp of completion. |
Notes
- Check the
statusfield to determine the current state of the pay-in. - If status is
awaiting_deposit, use thepayment_instructionsto complete the bank transfer. - Once status becomes
completed, the stablecoins have been delivered to the destination address.