curl --request GET \
--url https://api.anycheck.ai/bank-statements/{id}/merchant-analysis \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"merchant_analysis": [
{
"merchant_name": "ABC Company",
"total_transaction": 5,
"total_amount": 2500000,
"transactions": [
{
"account_number": "1234567890",
"page_no": 1,
"trx_date": "2023-01-15",
"trx_notes": "Transfer from ABC Company",
"trx_types": "CR",
"category_type": "Non-Recurring Miscellaneous Income",
"is_operational": false,
"merchant_name": "NINA NURSITA RAMADHAN",
"trx_mutation_db_number": 0,
"trx_mutation_cr_number": 200000,
"balance_number": 200000,
"confidence_detail": {
"page_no": 0,
"trx_date": 0,
"trx_notes": 0,
"trx_types": 0,
"category_type": 0,
"is_operational": 0,
"merchant_name": 0,
"trx_mutation_amount": 0,
"balance": 0,
"page_no_level": "LOW",
"trx_date_level": "LOW",
"trx_notes_level": "LOW",
"trx_types_level": "LOW",
"category_type_level": "LOW",
"is_operational_level": "LOW",
"merchant_name_level": "LOW",
"trx_mutation_amount_level": "LOW",
"balance_level": "LOW"
},
"mutation_amount_idr": 200000,
"balance_idr": 200000,
"clean_description": "Transfer In",
"is_operational_llm": false,
"is_operational_keyword": true,
"is_automatic_bank_transaction": false,
"is_circular_transaction": false,
"is_kiting_transaction": false,
"is_big_transaction": true,
"is_round_transaction": true,
"is_transfer_from_company_group": false,
"is_transfer_from_director": false,
"is_transfer_from_supplier": false,
"is_transfer_from_customer": false,
"is_pace_revenue": true,
"is_rm_revenue": true
}
]
}
],
"total": 123
}Retrieve merchant transaction analysis with grouping and statistics
curl --request GET \
--url https://api.anycheck.ai/bank-statements/{id}/merchant-analysis \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"merchant_analysis": [
{
"merchant_name": "ABC Company",
"total_transaction": 5,
"total_amount": 2500000,
"transactions": [
{
"account_number": "1234567890",
"page_no": 1,
"trx_date": "2023-01-15",
"trx_notes": "Transfer from ABC Company",
"trx_types": "CR",
"category_type": "Non-Recurring Miscellaneous Income",
"is_operational": false,
"merchant_name": "NINA NURSITA RAMADHAN",
"trx_mutation_db_number": 0,
"trx_mutation_cr_number": 200000,
"balance_number": 200000,
"confidence_detail": {
"page_no": 0,
"trx_date": 0,
"trx_notes": 0,
"trx_types": 0,
"category_type": 0,
"is_operational": 0,
"merchant_name": 0,
"trx_mutation_amount": 0,
"balance": 0,
"page_no_level": "LOW",
"trx_date_level": "LOW",
"trx_notes_level": "LOW",
"trx_types_level": "LOW",
"category_type_level": "LOW",
"is_operational_level": "LOW",
"merchant_name_level": "LOW",
"trx_mutation_amount_level": "LOW",
"balance_level": "LOW"
},
"mutation_amount_idr": 200000,
"balance_idr": 200000,
"clean_description": "Transfer In",
"is_operational_llm": false,
"is_operational_keyword": true,
"is_automatic_bank_transaction": false,
"is_circular_transaction": false,
"is_kiting_transaction": false,
"is_big_transaction": true,
"is_round_transaction": true,
"is_transfer_from_company_group": false,
"is_transfer_from_director": false,
"is_transfer_from_supplier": false,
"is_transfer_from_customer": false,
"is_pace_revenue": true,
"is_rm_revenue": true
}
]
}
],
"total": 123
}JWT token obtained from /auth/login endpoint.
Example:
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...Verification ID
Number of records to skip for pagination
x >= 0Number of records per page
1 <= x <= 100Filter by transaction type (CR for credit, DB for debit)
CR, DB Filter by account number (optional)
Was this page helpful?