Get chargeback - Chargebacks - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Get chargeback

GET

https://api.mercadopago.com/v1/chargebacks/{id}
Check all the information related to a chargeback for your product or service with the ID of the chargeback you want.
Request's parameters
PATH
id
string

REQUIRED

The "id" parameter represents a unique identifier for the chargeback transaction. If you do not have this specific information, simply insert the payment ID for which you want to obtain the chargeback details. It is impo...Ver más
HEADER
x-caller-id
string

REQUIRED

This parameter refers to the seller's ID, an identification necessary to correctly locate the refund information.
Response parameters
id
string
Unique chargeback identifier
payments
array
List of payments IDs associated to the case
currency
string
Chergeback amount currency
amount
number
Chergeback amount
Request
curl -X GET \
    'https://api.mercadopago.com/v1/chargebacks/{id}'\
    -H 'Content-Type: application/json' \
       -H 'x-caller-id: 543802539' \
       -H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
    
Sample answer
{
  "payments": [
    {}
  ],
  "documentation": [
    {}
  ]
}