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.

Get information about a transaction - Transactions - Mercado Pago Developers

Intelligent search powered by OpenAI 

Get information about a transaction

GET

https://api.mercadopago.com/v1/transaction-intents/{id}
Allows you to obtain information about a previously generated Money Out transaction based on its "id". That is, you will be able to consult information about a money out transaction by providing the identification number that was assigned to it in the response to its creation.
Request's parameters
PATH
id
string

REQUIRED

Identifier of the transaction for which you wish to consult, returned in the response to its creation within the "id" field
Response parameters
created_date
string
Transaction creation date.
external_reference
string
Transaction external reference, generated by the integrator when it was created.
id
string
Unique transaction identifier, automatically generated.
last_updated_date
string
Transaction's status update date.
Errors

400Bad Request

ID format invalid

The ID format in the path is invalid

Client not allowed

The client ID associated with the credentials is not allowed to make the request.

Financial identity not found

Financial identity not found. Check the "to.accounts.bank_id" field.

Many Requests

Too many requests has been made. Wait and try again.

Rate Limit

The consultation service reached the rpm limit in order not to exceed the limit allowed by Bacen and not receive fines.

Unauthorized

The request is unauthorized.

404Not Found

not_found

The transaction was not found by its ID.

424Failed Dependency

Resource locked

The rate limit service is processing the integrator's consumption of our API.

500Internal Server Error

internal_server_error

There was an error communicating with transaction_intent

502Bad Gateway

bad_gateway

Error processing request

Request
curl -X GET \
    'https://api.mercadopago.com/v1/transaction-intents/{id}'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
    
Sample answer
{
  "created_date": "2021-01-01T00:00:00.000Z",
  "external_reference": "123456",
  "id": "0d5020ed",
  "last_updated_date": "2021-01-01T00:00:00.000Z",
  "point_of_interaction": {
    "type": "{\"type\":\"PSP_TRANSFER\"}"
  },
  "seller_configuration": {
    "notification_info": {
      "notification_url": "http://example.com.br/notification"
    }
  },
  "status": "approved",
  "transaction": {
    "from": {
      "accounts": [
        {
          "amount": "100,00"
        }
      ]
    },
    "paid_amount": 100,
    "payer": {
      "id": 123456543
    },
    "refunded_amount": 1,
    "to": {
      "accounts": [
        {
          "amount": "100,00",
          "origin_id": "01AAAM001A1AY43FBR8WCM9CES",
          "status_details": [
            {}
          ],
          "owner": {
            "identification": {
              "number": "1234567890",
              "type": "CPF"
            }
          },
          "bank_id": "0000014",
          "type": "checking_account",
          "number": "123456"
        }
      ]
    },
    "total_amount": 100,
    "statement_descriptor": "test"
  }
}