Skip to main content
GET
/
api
/
v1
/
liquidity
/
utilization
/
drawdown-intent
/
{drawdownId}
Get Drawdown Intent
curl --request GET \
  --url https://api.mansafinance.co/api/v1/liquidity/utilization/drawdown-intent/{drawdownId} \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-key: <api-key>'
{
  "id": "bd987a7a-0acf-4a5c-9cf8-d8c38f8cf9a4",
  "intent_submission_id": "f6d7a9e0-1b2c-4a3b-9d2e-5b6c7d8e9f00",
  "drawdown_id": "a1a2b3c4-d5e6-4789-9abc-def012345678",
  "amount": "1000000.00",
  "currency": "USDT",
  "corridors": [
    {
      "corridor_id": "<string>",
      "origin_country": "<string>",
      "destination_country": "<string>",
      "intent_code": "<string>",
      "allocation_amount": "<string>",
      "allocation_currency": "<string>",
      "expected_settlement_at": "2023-11-07T05:31:56Z",
      "additional_fields": {},
      "routes": [
        {
          "route_id": "<string>",
          "rail_type": "ONCHAIN.TRON",
          "provider": "<string>",
          "source_instrument": {
            "type": "WALLET",
            "id": "<string>"
          },
          "dest_instrument": {
            "type": "WALLET",
            "id": "<string>"
          },
          "source_currency": "<string>",
          "dest_currency": "<string>",
          "amount": "<string>",
          "expected_eta": "<string>"
        }
      ]
    }
  ],
  "created_at": "2025-10-15T10:00:00Z",
  "updated_at": "2025-10-15T10:00:00Z"
}

Authorizations

x-api-key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Path Parameters

drawdownId
string
required

Unique identifier of the drawdown intent to retrieve

Response

Drawdown intent retrieved successfully

id
string
required

Internal unique identifier for the drawdown intent record

Example:

"bd987a7a-0acf-4a5c-9cf8-d8c38f8cf9a4"

intent_submission_id
string
required

Idempotency/correlation identifier for this intent submission

Example:

"f6d7a9e0-1b2c-4a3b-9d2e-5b6c7d8e9f00"

drawdown_id
string
required

Drawdown identifier

Example:

"a1a2b3c4-d5e6-4789-9abc-def012345678"

corridors
object[]
required

Array of payment corridors

created_at
string<date-time>
required

Timestamp when the drawdown intent was created

Example:

"2025-10-15T10:00:00Z"

updated_at
string<date-time>
required

Timestamp when the drawdown intent was last updated

Example:

"2025-10-15T10:00:00Z"

amount
string

Total amount across all corridors (optional)

Example:

"1000000.00"

currency
string

Currency code (ISO-4217 or token symbol)

Example:

"USDT"