API · Get a recurring plan

API v1
POST /api/v1/getPlanRepeat

What it does#

Returns a single recurring plan.

Authentication#

Requires the API bearer token in the Authorization header — see authentication.

Parameters#

keystringrequerido#

Tilopay integration key.

idstringrequerido#

Recurring plan id.

Request example#

The <...> values are placeholders: replace them with your own credentials and data.

{
  "key": "<api_key>",
  "id": "3"
}

Response#

{
  "type": "200",
  "message": "Success",
  "plan": {
    "id": 232,
    "title": "Prueba repeat",
    "description": "Plan repeat de prueba mensual",
    "frequency": 3,
    "currency": "USD",
    "first_amount": "5.00",
    "trial": 0,
    "trial_days": 0,
    "attempts": 5,
    "thanks_url": null,
    "webhook_subscribe": null,
    "webhook_payment": null,
    "webhook_rejected": null,
    "webhook_unsubscribe": null,
    "webhook_reactive": null,
    "modality": [
      {
        "id": 292,
        "title": "Pago mensual prueba repeat modalidad",
        "amount": "10.00"
      }
    ],
    "end_at": null
  }
}

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