Home
Home
  1. 📡 Endpoints
  • 🚀 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
      POST
    • Get operation
      GET
    • Get valid document types
      GET
    • Get valid coins
      GET
  • 📂 Resources
    • Concept Details
    • Enum Validation
Home
Home
  1. 📡 Endpoints

Get operation

GET
/api/v1/verification/get
This endpoint retrieves the current status of transactions. Provide a client_transaction_id to query a specific transaction, or leave it out to return the latest 10 transactions by default. Pagination is supported using the limit and page parameters.

Request

Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://prod.your-api-server.com/api/v1/verification/get?client_id=&client_secret=&limit=100&page=1&client_transaction_id=351'
Response Response Example
{
  "success": true,
  "transactions": [
    {
      "transaction_id": "rillis_tx_12345",
      "client_transaction_id": "transaction_12345",
      "transaction_type": "fiat",
      "sending_dollar_amount": 100,
      "sending_amount": 100,
      "sending_currency": "USD",
      "receiving_amount": 92,
      "receiving_currency": "EUR",
      "crypto_network": null,
      "crypto_asset": null,
      "sending_wallet": null,
      "receiving_wallet": null,
      "status": "COMPLETED",
      "reasons_rejection_analysis": null,
      "reasons_rejection_operator": null,
      "rejected_at": null,
      "analyzed_at": 1684356854091,
      "created_at": 1684356824091
    },
    {
      "transaction_id": "rillis_tx_67890",
      "client_transaction_id": "transaction_67890",
      "transaction_type": "crypto",
      "sending_dollar_amount": 1000,
      "sending_amount": 0.05,
      "sending_currency": "BTC",
      "receiving_amount": 1000,
      "receiving_currency": "USD",
      "crypto_network": "Bitcoin",
      "crypto_asset": "BTC",
      "sending_wallet": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
      "receiving_wallet": "3J98t1WpEZ73CNmQviecrnyiWrnqRhWNLy",
      "status": "COMPLETED",
      "reasons_rejection_analysis": null,
      "reasons_rejection_operator": null,
      "rejected_at": null,
      "analyzed_at": 1684356954091,
      "created_at": 1684356924091
    }
  ],
  "total": 2,
  "page": 1,
  "limit": 20,
  "total_pages": 1
}
Modified at 2025-05-29 15:13:43
Previous
Create operation
Next
Get valid document types
Built with