API · Get a payment link by id
API v1GET /api/v1/getLinkPaymentById/{link_payment_id}/{api_key}What it does#
Returns a single payment link. It takes no body: the data travels in the path.
Authentication#
Requires the API bearer token in the Authorization header — see authentication.
Parameters#
Path parameters, in the order they appear in the URL:
Id of the payment link to query.
Merchant api key.
Response#
{
"type": "200",
"message": "Success",
"data": {
"id": 1,
"amount": "45.00",
"currency": "USD",
"reference": "Producto de prueba 1 TP-Shop",
"url": "https://admin.tilopay.com/link/loNj8E2MA==",
"callback_url": null,
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"times_used": null,
"picture": "https://storage.googleapis.com/tilo-uploads/items/51087219_.png",
"create": "2022-10-24 08:45:14",
"payments": []
}
}To interpret a response that is not a success, see how to read an error response.
Last verified: 2026-08-29 · Owner: equipo-integraciones