Limitations#
The transactions list can contain up to 5000 elements to be categorized per request. If you need to categorize more than 5000 transactions, split them into multiple requests.
/categorizeThe transactions list can contain up to 5000 elements to be categorized per request. If you need to categorize more than 5000 transactions, split them into multiple requests.
_identifier for the user (ie. email or cpf)_
If the holder is a Business, if not is a Person.
Default: false
Type of the account holder of the transactions
Default: "CHECKING"
Transactions to enrich, max 5000
{
"clientUserId": "string",
"isBusiness": false,
"accountType": "CHECKING",
"transactions": [
{
"id": "string",
"description": "string",
"type": "CREDIT",
"amount": 0,
"date": "string",
"paymentData": {
"paymentMethod": "string",
"reason": "string",
"payer": {
"name": "string",
"accountNumber": "string",
"branchNumber": "string",
"routingNumber": "string",
"documentNumber": {}
},
"receiver": {}
},
"creditCardMetadata": {
"payeeMCC": "string"
}
}
]
}{
"results": [
{
"id": "12345",
"date": "2022-05-01T00:00:00.000Z",
"description": "Mc Donalds",
"type": "DEBIT",
"amount": 100,
"category": "Eating out",
"merchant": {
"name": "mc donalds",
"businessName": "ARCOS DOURADOS COMERCIO DE ALIMENTOS LTDA",
"cnpj": "42.591.651/0001-43"
}
}
]
}curl -X POST \
'https://enrichment-api.pluggy.ai/categorize' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY' \
-d '{}'{
"results": [
{
"id": "12345",
"date": "2022-05-01T00:00:00.000Z",
"description": "Mc Donalds",
"type": "DEBIT",
"amount": 100,
"category": "Eating out",
"merchant": {
"name": "mc donalds",
"businessName": "ARCOS DOURADOS COMERCIO DE ALIMENTOS LTDA",
"cnpj": "42.591.651/0001-43"
}
}
]
}