Skip to main content
POST
/
api
/
v1
/
liquidity
/
management
/
loan
Request Loan
curl --request POST \
  --url https://api.mansafinance.co/api/v1/liquidity/management/loan \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "amount": "50000",
  "chain_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "loan_request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "PROCESSED",
  "loan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

x-api-key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Body

application/json
  • Option 1
  • Option 2
amount
string
required
Example:

"50000"

chain_id
string<uuid>
required
client_id
string<uuid>
client_request_id
string<uuid>
notes
string

Response

Loan request processed synchronously

loan_request_id
string<uuid>
status
enum<string>
Available options:
PROCESSED
loan_id
string<uuid>