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

Check Credit

GET
/v1/credits/simulate
Last modified:2025-07-10 10:16:03
Calculates interest and fees for a requested credit amount and due date, based on client-specific limits and pricing.

Request

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

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/credits/simulate' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "client_id": "string",
    "amount": 0,
    "currency": "string",
    "due_date": "string"
}'
Response Response Example
{
    "status": "string",
    "timestamp": "string",
    "data": {
        "principal_amount": "string",
        "interest_amount": 0,
        "currency": "string",
        "due_date": "string"
    }
}
Modified at 2025-07-10 10:16:03
Previous
Create Chain Information
Next
Create Credit
Built with