Get Settlement by Deposit

Get the settlement associated with a specific deposit.

Retrieves the settlement record associated with a specific deposit ID.

Endpoint

GET /v1/settlements/deposit/:depositId

Authentication

Header
Value

x-api-key

Your API key

Path parameters

Parameter
Type
Description

depositId

string

Deposit UUID

Example request

curl -X GET https://ramp-api.ivorypay.io/api/v1/settlements/deposit/dep-uuid-1 \
  -H "x-api-key: your_api_key"

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Query successful",
  "data": {
    "id": "set-uuid-1",
    "reference": "set_abc123",
    "depositId": "dep-uuid-1",
    "fiatAmount": 99500,
    "fiatCurrency": "NGN",
    "cryptoAmount": 62.18,
    "token": "USDT",
    "chain": "BSC_MAINNET",
    "status": "COMPLETED",
    "transactionHash": "0xsettlement123..."
  }
}
circle-info

Use this endpoint to trace the full lifecycle of a deposit — from fiat receipt to crypto settlement.

Last updated