Solidgate API for reports allows merchants to securely access transaction data and generate customized reports for analyzing and tracking the performance of their payment operations.
With Solidgate’s reconciliation functionality, merchants can track cash daily, identify fund flow gaps, gain complete transaction lifecycle visibility, implement strong financial controls, and establish scalable financial processes.
Solidgate data comes with a 60-minute delay, thus it is not recommended for real-time analysis.
Please note that reports may be inaccessible for about 30 minutes on Wednesdays at 5:00 PM (UTC) due to scheduled external maintenances. Once complete, all reports will be available with data preserved.
The report provides essential data for merchants, including transaction details, customer information, and technical insights, facilitating comprehensive order tracking, financial reconciliation, and enhanced operational and marketing strategies.
This report uses the
updated_atas the default parameter for unloading data, which reflects the latest update to card orders.
Unique public key provided upon registration and must be shared for identification purposes.
Request signature that allows verification of merchant authenticity on the payment gateway server.
Filtering criteria for the report data.
Start datetime for the report stated in UTC+0.
End datetime for the report stated in UTC+0.
Limit value indicates the maximum number of items to be returned.
Pagination helps in managing large datasets by dividing them into smaller, manageable chunks.
If this value is
null, it indicates that all available data has been successfully retrieved by the merchant.
curl -i -X POST \
https://reports.solidgate.com/api/v1/card-orders \
-H 'Content-Type: application/json' \
-H 'merchant: YOUR_API_KEY_HERE' \
-H 'signature: YOUR_API_KEY_HERE' \
-d '{
"filter": "created_at",
"date_from": "2025-08-15 11:00:00",
"date_to": "2025-08-18 11:00:00",
"limit": 2000,
"next_page_iterator": "eyJzdWJzY3JpcHRpb25faWQiOiI5ODlkCJkYXRlX3RvIjoiMjAyMC0wOS0xNyAxNDoxMDowMCJ9"
}'This endpoint returns the card orders data directly in the response body. No polling or separate download call is needed.
- Success
- Authentication failed
- Success
- Authentication failed
{ "orders": [ … ], "metadata": { … } }