This endpoint allows searching reports filtering according to various criteria. In case of success, the request will return a response with status 200.
GET
REQUIRED
400Bad Request. Invalid parameters in the request.
invalid_id
The value informed for the 'id' parameter is invalid. Validate if the sent information is correct and try again.
invalid_offset
The offset is not valid or exceeds the maximum value of 10000. Validate if the sent information is correct and try again.
invalid_limit
The limit is not valid or exceeds the maximum value of 500. Validate if the sent information is correct and try again.
invalid_range
The value informed for the 'range' parameter is invalid. It must be 'date_created'.
invalid_range_begin_date
The range start date is invalid or was not informed when the 'range' parameter was used as a search filter. It is mandatory to send it in these cases.
invalid_range_end_date
The range end date is invalid or was not informed when the 'range' parameter was used as a search filter. It is mandatory to send it in these cases.
invalid_account_id
The value informed for the 'account_id' parameter is invalid. Validate if the sent information is correct and try again.
invalid_currency_id
The value informed for the 'currency_id' parameter is invalid. It must contain only uppercase letters and a maximum of 10 characters.
invalid_filters
The filters contain invalid fields. Check the 'filters' parameter documentation for more information.
invalid_alias_created_from
The value informed for the 'alias_created_from' parameter is invalid. It must be 'manual' or 'schedule'.
401Unauthorized.
unauthorized_user_id
The user is not authorized to access the requested resource. Validate if the sent information is correct and try again.
500Internal Server Error.
internal_error
Internal server error. Wait a few minutes and try again.
curl -X GET \
'https://api.mercadopago.com/v1/account/release_report/search?id=17001104&file_name=release-report-238792004-2025-07-15-050017.csv&begin_date=2025-08-01T00:00:00Z&end_date=2025-08-05T23:59:59Z&created_from=manual&range=date_created&range_begin_date=2025-07-01T00:00:00Z&range_end_date=2025-07-31T23:59:59Z&account_id=208361929¤cy_id=ARS&format=CSV&limit=30'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-8*********932064-12*********edf6d3c99*********2236c703f*********668' \
{
"paging": {
"total": 4,
"limit": 30,
"offset": 0
},
"results": [
{
"id": 17001104,
"user_id": 574264905,
"begin_date": "2022-09-30T03:00:00Z",
"end_date": "2022-10-02T02:59:59Z",
"file_name": "release-report-USER_ID-2022-10-12-104118.csv",
"created_from": "manual",
"date_created": "2022-10-12T10:41:19.000-04:00",
"download_date": "2022-10-12T10:42:55.000-04:00",
"status": "enabled",
"origin": "date_range",
"sub_type": "release",
"metadata": "{\"user_tags\": [\"normal\", \"credits_profile\", \"messages_as_seller\"], \"generation_model\": \"release\", \"last_movement_id\": 129309876619}",
"model": "release",
"account_id": 208361929,
"currency_id": "ARS",
"format": "CSV"
}
]
}