Arf Liquidity Docs
  1. Credit
Arf Liquidity Docs
  • Introduction
  • Environments
  • IP Restrictions
  • Authentication
  • RSA4096 Examples
  • Errors
  • Webhooks
  • Client
    • Create Client
      POST
    • Upload Document
      PUT
    • Get Client
      GET
    • List Clients
      GET
    • Get Client Credit Preference
      GET
    • Create Bank Information
      POST
    • Create Chain Information
      POST
  • Credit
    • Check Credit
      GET
    • Create Credit
      POST
    • Get Credit
      GET
    • List Credits
      GET
  • Webhooks
    • List All Webhook
      GET
    • Create Webhook
      POST
    • Delete Webhook
      DELETE
  • Schemas
    • Error Schema
    • Successful Response
    • Client Detail
    • Document Detail
    • Credit Details
    • Webhook
  1. Credit

List Credits

GET
/v1/credits
Last modified:2025-07-10 10:23:36
Returns a list of all credit requests associated with a client.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/credits?client_id&status&due_date.from&due_date.to&created_at.from&created_at.to&currency&completed_at.from&completed_at.to&page&size&direction' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "status": "string",
    "timestamp": "string",
    "data": {
        "page": 0,
        "size": 0,
        "direction": "string",
        "credits": {
            "id": "string",
            "client_id": "string",
            "due_date": "string",
            "principal_amount": 0,
            "interest_amount": 0,
            "currency": "string",
            "status": "string",
            "created_at": "string",
            "completed_at": "string"
        }
    }
}
Modified at 2025-07-10 10:23:36
Previous
Get Credit
Next
List All Webhook
Built with