Home
Home
  1. 💸 Transaction API
  • 🚀 Getting Started
  • 🔎 Screening API
    • Overview
    • Blacklist Matching Logic
    • Blockchain Analysis
      POST
    • Individuals Analysis
      POST
    • Organizations Analysis
      POST
    • Screening Entities Summary Analysis
      POST
    • Create BlackList
      POST
    • Get All BlackList Records
      GET
    • Get Blacklist Record by ID
      GET
    • Delete Blacklist Record by ID
      DELETE
    • Update Blacklist Record by ID
      PATCH
    • Update Blacklist Settings Account
      PATCH
  • 🌊 Flow API
    • Overview
    • Flow Step: Identity Verification
    • Flow Step: Onboarding Individual
    • Flow Step: Onboarding Organization
    • 📡 Endpoints
      • Authentication token
      • Get Flow Instance
      • Get File from Flow Instance
      • Identity: Get Details
      • Identity: Get Files
      • Identity: Update Status
      • Onboarding: Get Details
      • Onboarding: Get File
      • Onboarding: Get Multiple Files
      • Onboarding: Update Status
    • 📤 Webhooks
      • Webhooks Overview
      • Flow
      • Identity Verification
      • Onboarding Individual
      • Onboarding Organizations
      • Identity Verification by Onboarding
  • 💸 Transaction API
    • 🔑 Authentication
    • Overview
    • Transaction Analysis
    • Transaction Status
    • Document Types
    • Cryptocurrencies
    • Diagram
    • 📤 Webhooks
  • 📡 Endpoints
    • Create operation
    • Get operation
    • Get valid document types
    • Get valid coins
  • 📂 Resources
    • Concept Details
    • Enum Validation
Home
Home
  1. 💸 Transaction API

🔑 Authentication

Authentication in this API is performed by sending the client's credentials in the body of the request. You must include the following fields:
client_id: A unique identifier for the client.
client_secret: A shared secret between the client and the server.
These credentials must be provided with every request to the API endpoints to authenticate and authorize the client.

Authentication on Endpoints#

To authenticate a request on any API endpoint, follow these steps:
1.
Include the following properties in the request body:
{
  "client_id": "your_client_id",
  "client_secret": "your_client_secret"
}
Replace your_client_id with the client_id provided by the system and your_client_secret with the corresponding client_secret.
2.
Send the request to the desired endpoint.
If the authentication credentials are valid, you will receive a successful response. Otherwise, you will receive an error code along with a message explaining the issue.

Example Authentication Request#

Below is an example of how to authenticate a request using the client credentials:
Modified at 2025-05-29 17:02:06
Previous
Identity Verification by Onboarding
Next
Overview
Built with