Home
Documentation
Resources
Partners
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Partners

Discover our program for agencies or developers that offer integration services and sellers who want to hire them.

Community

Get the latest news, ask others for help and share your knowledge.

Capture payment - Payments - Mercado Pago Developers

Intelligent search powered by OpenAI 

Capture payment

GET

https://api.mercadopago.com/v1/advanced_payments/{advanced_payment_id}
This endpoint is used to get a payment data from its ID.
Request's parameters
PATH
advanced_payment_id
number

REQUIRED

The payment, with id 'advanced_payment_id' to be confirmed.
Response parameters
id
number
Unique ID that identifies the payment.
wallet_payment
object
It indicates that is a payement from a seller with a previous Wallet Connect vinculation.
payments
array
Respuesta de pago aprobado
disbursements
object
List of payments that correspond to each seller.
Errors

400Error

400

Bad-Request

404

Not-Found

500Error

500

Error

Request
curl -X GET \
    'https://api.mercadopago.com/v1/advanced_payments/{advanced_payment_id}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
    
Sample answer
{
  "id": 10267812,
  "wallet_payment": {
    "transaction_amount": 125.98,
    "description": "Payment for the purchase of furniture",
    "external_reference": "Payment_seller_123"
  },
  "payments": [
    {
      "id": 3870106238,
      "status_detail": "approved_id",
      "payment_method_id": "credit_card_id",
      "transaction_amount": 700.5,
      "installments": 1,
      "description": "Payment for the purchase of furniture",
      "capture": true,
      "external_reference": "payment_123"
    }
  ],
  "disbursements": {
    "collector_id": "collectorId"
  },
  "payer": {
    "id": 8879
  },
  "site_id": "MLB",
  "date_created": "2018-10-20T09:34:20.518-04:00",
  "date_last_updated": "2018-10-20T09:34:20.518-04:00"
}