GET
/
api
/
v1
/
liquidity
/
corridors
List Available Corridors
curl --request GET \
  --url https://api.mansa.io/api/v1/liquidity/corridors \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "corridor_ngn",
      "name": "Nigeria",
      "currency": "NGN",
      "status": "ACTIVE",
      "min_amount": "1000",
      "max_amount": "1000000",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "limit": 50,
    "page": 1,
    "total": 1
  }
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 100
page
integer
default:1
Required range: x >= 1
status
enum<string>
Available options:
ACTIVE,
INACTIVE

Response

Corridors list

The response is of type object.