Orkesta provides multiple ways to get your payment data out — one-off exports from the dashboard, automated scheduled report delivery, or API-based data retrieval for custom data pipelines.Documentation Index
Fetch the complete documentation index at: https://docs.orkesta.com.tr/llms.txt
Use this file to discover all available pages before exploring further.
Manual export
Go to the relevant view
Navigate to Payments, Reconciliation, or Reports depending on the data you need.
Apply filters
Use the filter bar to narrow the dataset by date range, payment method, status, or account.
Scheduled exports
To automate recurring exports, use scheduled reports. You can attach a CSV to every scheduled delivery so recipients always receive the latest data without logging in. See Schedule and deliver payment reports for setup instructions.API export
Use theGET /payments endpoint to retrieve payment data programmatically. Apply query parameters to filter results before fetching.
next_cursor field when more records are available. Pass its value as the cursor parameter in your next request to retrieve the following page.
For large datasets, use the API with pagination rather than UI export to avoid timeouts. API exports support up to 10,000 records per page.
Data formats
- CSV
- JSON
- PDF
CSV exports are UTF-8 encoded with a header row. The payments export includes the following columns:
| Column | Description |
|---|---|
id | Unique payment identifier |
amount | Payment amount |
currency | ISO 4217 currency code |
method | Payment method (e.g., bank_transfer, card) |
status | Payment status (e.g., settled, failed) |
from_account | Source account identifier |
to_account | Destination account identifier |
reference | External reference number |
description | Payment description |
created_at | ISO 8601 creation timestamp |
settled_at | ISO 8601 settlement timestamp |
