Jump to Content
Crédito Stone
HomeReferência da APIChangelog
HomeReferência da APIChangelogStatusCrédito Stone
Referência da API
HomeReferência da APIChangelogStatus
These docs are for v2.0. Click to read the latest docs for v3.

Credit API

  • Introduction
  • Authentication
  • Idempotency
  • Pagination
  • Errors
  • Borrowers
    • api/v2/borrowersget
    • api/v2/borrowers/{id}get
    • api/v2/borrowerspost
    • api/v2/borrowers/{id}/registrationspost
    • api/v2/borrowers/{id}patch
    • api/v2/borrowers/{id}/activatepatch
  • Brasil Money Plus
    • /api/v2/brasilmoneyplus/callbackpost
  • Credit Lines
    • api/v2/credit-linesget
    • api/v2/credit-lines/{id}get
    • api/v2/credit-linespost
    • api/v2/credit-lines/{id}del
  • Proposal
    • api/v2/proposalsget
    • api/v2/proposals/{id}get
    • api/v2/proposalspost
    • api/v2/proposals/{id}/loanspost
  • Loan
    • api/v2/loansget
    • api/v2/loans/{id}get
    • api/v2/loans/{id}/setuppost
    • api/v2/loans/{id}/disbursementpost
    • api/v2/loans/{id}del
    • api/v2/loans/{id}/paymentsget
    • api/v2/loans/{id}/payments-forecastget
    • Visão Geral da Conta Bancária (BankAccount)
Powered by 

Pagination

All paged results have the returned items as an array of objects and a paging object as is described below.

All paged endpoints accepts 2 parameters: pageSize and pageNumber.

{
    "items": [
        {
        }
    ],
    "paging": {
        "totalItems": 100,
        "currentPage": 1,
        "pageSize": 30,
        "pageCount": 4
    }
}