Skip to main content
GET
/
v2
/
contracts
Get Contracts
curl --request GET \
  --url https://client-api.dev.finhost.io/v2/contracts \
  --header 'Authorization: Bearer <token>'
{
  "contracts": [
    {
      "id": "<string>",
      "title": "<string>",
      "description": "<string>",
      "available": true,
      "clientType": "individual",
      "currencies": [
        {
          "currency": "<string>",
          "accountsCountLimit": 123,
          "products": [
            {
              "id": "<string>",
              "type": "transfer",
              "transferPlans": [
                {
                  "calculator": "sum",
                  "from": 123,
                  "flat": 123,
                  "percentage": 123
                }
              ]
            }
          ]
        }
      ],
      "variants": [
        {
          "id": "<string>",
          "currency": "<string>",
          "description": "<string>",
          "title": "<string>",
          "accountsCountLimit": 123,
          "products": [
            {
              "id": "<string>",
              "type": "transfer",
              "transferPlans": [
                {
                  "calculator": "sum",
                  "from": 123,
                  "flat": 123,
                  "percentage": 123
                }
              ]
            }
          ]
        }
      ],
      "onboardingFee": {
        "currency": "<string>",
        "amount": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

companyId
string<uuid>

Company ID

Response

OK

contracts
object[]
required