Getting started

Quickstart Guide

Start using the Canceli API in under 5 minutes.

1

Get your API key

Contact us to get your API key. For development, you can use the API without authentication.

2

Make your first request

curl /api/v1/cancel/netflix.com

This returns the complete cancellation flow for Netflix.

3

Check service support

curl /api/v1/supported/spotify.com

Quickly check if a service is supported before fetching the full path.

Example response

{
  "domain": "netflix.com",
  "service_name": "Netflix",
  "steps": [
    {
      "action": "navigate",
      "target": "https://www.netflix.com/account",
      "description": "Navigate to Account settings"
    },
    {
      "action": "click",
      "target": "a[href*=\"cancelplan\"]",
      "description": "Click on \"Cancel Membership\""
    },
    {
      "action": "click",
      "target": "button[data-uia=\"action-finish-cancellation\"]",
      "description": "Click \"Finish Cancellation\" button"
    }
  ],
  "estimated_time": 45,
  "last_verified": "2026-02-13T00:00:00.000Z",
  "confidence": 0.95
}