Skip to main content
GET
/
financing_offers
Get financing offers and the business status
curl --request GET \
  --url https://api.sandbox.monite.com/v1/financing_offers \
  --header 'Authorization: Bearer <token>' \
  --header 'x-monite-entity-id: <x-monite-entity-id>' \
  --header 'x-monite-version: <x-monite-version>'
{
  "business_status": "ONBOARDED",
  "offers": [
    {
      "currency": "USD",
      "pricing_plans": [
        {
          "advance_rate_percentage": 123,
          "fee_percentage": 123,
          "repayment_type": "MULTIPLE_DURATION",
          "repayment_duration_days": 123
        }
      ],
      "status": "CURRENT",
      "total_amount": 1000000,
      "available_amount": 500000
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-monite-version
string<date>
required
x-monite-entity-id
string<uuid>
required

The ID of the entity that owns the requested resource.

Example:

"9d2b4c8f-2087-4738-ba91-7359683c49a4"

Response

Successful Response

business_status
enum<string>
required

The business's onboarding status.

Available options:
NEW,
INPUT_REQUIRED,
ONBOARDED
Example:

"ONBOARDED"

offers
object[]
required

A list of financing offers extended to the business.