API · List payment links

API v1
GET /api/v1/getLinkPaymentList/{api_key}/{limit}

What it does#

Returns the paginated list of the merchant's payment links. 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:

api_keystring · pathrequerido#

Merchant api key.

limitstring · pathrequerido#

Number of records per page.

Response#

{
  "type": "200",
  "message": "Success",
  "data": {
    "current_page": 1,
    "first_page_url": "http://app.tilopay.com/api/v1/getLinkPaymentList/<api_key>/10?page=1",
    "from": 1,
    "last_page": 2,
    "last_page_url": "http://app.tilopay.com/api/v1/getLinkPaymentList/<api_key>/10?page=2",
    "next_page_url": "http://app.tilopay.com/api/v1/getLinkPaymentList/<api_key>/10?page=2",
    "path": "http://app.tilopay.com/api/v1/getLinkPaymentList/<api_key>/10",
    "per_page": 10,
    "prev_page_url": null,
    "to": 10,
    "total": 16,
    "payment_link": [
      {
        "id": 1,
        "amount": "45.00",
        "currency": "USD",
        "reference": "Producto de prueba 1 TP-Shop",
        "url": "https://admin.tilopay.com/link/3dNjE2MA3sdd==",
        "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"
      },
      {
        "id": 2,
        "amount": "35.00",
        "currency": "USD",
        "reference": "Producto de prueba 2",
        "url": "https://admin.tilopay.com/link/dwNjE2see3MA==",
        "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/64156766_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 3,
        "amount": "45.00",
        "currency": "USD",
        "reference": "Producto de prueba 3",
        "url": "https://admin.tilopay.com/link/f4NjE2MwsdA==",
        "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/88435879_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 4,
        "amount": "45.00",
        "currency": "USD",
        "reference": "test",
        "url": "https://admin.tilopay.com/link/ceNjE2sxw2MA==",
        "callback_url": null,
        "description": "ddd",
        "times_used": null,
        "picture": "https://storage.googleapis.com/tilo-uploads/items/37716065_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 5,
        "amount": "45.00",
        "currency": "USD",
        "reference": "test",
        "url": "https://admin.tilopay.com/link/cweNjE2Mfd5A==",
        "callback_url": null,
        "description": "ddd",
        "times_used": null,
        "picture": "https://storage.googleapis.com/tilo-uploads/items/37716065_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 6,
        "amount": "45.00",
        "currency": "USD",
        "reference": "test",
        "url": "https://admin.tilopay.com/link/ce3NjE2fg5eMA==",
        "callback_url": null,
        "description": "ddd",
        "times_used": null,
        "picture": "https://storage.googleapis.com/tilo-uploads/items/37716065_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 7,
        "amount": "45.00",
        "currency": "USD",
        "reference": "test",
        "url": "https://admin.tilopay.com/link/dsNjE2MAd32==",
        "callback_url": null,
        "description": "ddd",
        "times_used": null,
        "picture": "https://storage.googleapis.com/tilo-uploads/items/37716065_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 8,
        "amount": "45.00",
        "currency": "USD",
        "reference": "test",
        "url": "https://admin.tilopay.com/link/NjE2sd32MA==",
        "callback_url": null,
        "description": "ddd",
        "times_used": null,
        "picture": "https://storage.googleapis.com/tilo-uploads/items/37716065_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 9,
        "amount": "45.00",
        "currency": "USD",
        "reference": "test",
        "url": "https://admin.tilopay.com/link/sd3NjE2MA==",
        "callback_url": null,
        "description": "ddd",
        "times_used": null,
        "picture": "https://storage.googleapis.com/tilo-uploads/items/37716065_.png",
        "create": "2022-10-24 08:45:14"
      },
      {
        "id": 10,
        "amount": "45.00",
        "currency": "USD",
        "reference": "test",
        "url": "https://admin.tilopay.com/link/d3dNjE2MA==",
        "callback_url": null,
        "description": "ddd",
        "times_used": null,
        "picture": "https://storage.googleapis.com/tilo-uploads/items/37716065_.png",
        "create": "2022-10-24 08:45:14"
      }
    ]
  }
}

To interpret a response that is not a success, see how to read an error response.

Last verified: 2026-08-29 · Owner: equipo-integraciones

View as raw Markdown