v1

latestOpenAPI 3.1.02026-07-24233206489.1 KB
contracts

List contracts

Retrieves all contracts for the authenticated account, including associated loans and available credit limit.

get/v1/capitals/contracts

Query parameters

afterstring

Forward pagination

limitinteger

Items per page (default: 10)

statusstring

Filter by contract status (active, completed)

Response

OK

messagestring

Example response

{
  "data": [
    {
      "approved_amount": 1000000,
      "created_at": "2024-01-01T00:00:00Z",
      "currency": "PHP",
      "id": "contract_123",
      "interest_fee": 250,
      "lender": {
        "code": "gotyme",
        "id": "lender_123"
      },
      "loans": [
        {
          "created_at": "2024-01-01T00:00:00Z",
          "id": "loan_123",
          "outstanding_dst_amount": 500,
          "outstanding_interest_amount": 15000,
          "outstanding_principal_amount": 300000,
          "principal_amount": 300000,
          "purpose": "Expand business inventory"
        }
      ],
      "remaining_amount": 400000,
      "repayment_rate": 1250,
      "status": "active",
      "term": 12
    }
  ]
}