AI resources
Consult Other Operations reports listhttps://api.mercadopago.com/v1/reporting/operations/{reportId}/statements
Lists generated Other Operations reports in descending order by creation date. You can paginate the results or filter them by generation status, creation date, and origin. In case of success, the request returns a response with status 200.
GET
Request parameters
Header
Authorization
string
REQUIRED
Access Token obtained through the developer panel. Must be sent in all requests.
Path
reportId
string
REQUIRED
Other Operations report type.
activities_collection: Collection report.
activities_after_collection: Post-collection report.
activities_withdraw: Withdrawal report.
Query
size
integer
Results per page; default 30, maximum 1000.
page
integer
Page number; default 1.
status
string
Generation status used to filter the reports. To filter by more than one status, send the values separated by commas. The possible values are:
pending: The report is pending processing.
available: The report was generated successfully and is available for download.
failed: An error occurred while generating the report.
created_from
string
Start date and time used to filter reports by their creation date. Reports created at or after this value are returned. Use ISO 8601 format.
Response parameters
pagination
object
Pagination information for the returned report list.
results
array
List of reports that match the search criteria.
Errors
400Invalid filter.
invalid_filter
One or more search filters are invalid or do not apply to the selected report type. Check the accepted filters and their values for the specified reportId, then submit the request again.
401Invalid access token.
invalid_token
The Access Token is invalid, expired, or does not have read permissions. Check the token sent in the Authorization header and its scopes, then submit the request again.
Request
curl -X GET \
'https://api.mercadopago.com/v1/reporting/operations/{reportId}/statements?size=30&page=1&created_from=2026-03-01T00:00:00Z&created_to=2026-03-31T23:59:59Z'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-1*********550113-12*********b4773884a*********e8df16347*********786' \
Response
{
"pagination": {
"page": 1,
"size": 30,
"total": 8
},
"results": [
{
"id": "6d17e034-6eb3-48fc-a6fa-461e886fa406",
"date_start": "2026-09-01T05:00:00Z",
"date_end": "2026-09-03T04:59:59Z",
"status": "available",
"date_created": "2026-03-31T15:42:30Z",
"created_by": "manual",
"report": {
"id": "activities_collection",
"name": "Collections export",
"topic": "operations",
"version": "1"
},
"files": [],
"origin": {
"type": "date_range",
"data": {
"filters": {
"creation_date": {
"range": {
"gte": "2026-09-01T00:00:00.000-05:00",
"lte": "2026-09-02T23:59:59.999-05:00"
}
}
}
}
},
"structure": {
"id": "c79ac093-ffb4-403f-85a8-59811e23aa46"
},
"notifiers": [
{}
]
}
]
}