GET /v1/links HTTP/1.1
Host: api.checkoutlinks.com
Authorization: Bearer <TOKEN>
X-Shopify-Shop: yourshop.myshopify.com
Content-Type: application/json
{
  "status": "success",
  "data": {
    "links": [
      {
        "shortcode": "abc123",
        "slug": "abc123",
        "name": "Holiday Sale Link",
        "status": "active",
        "type": "regular"
      },
      {
        "shortcode": "def456",
        "slug": "def456",
        "name": "Spring Sale Link",
        "status": "draft",
        "type": "regular"
      }
    ],
    "total": 2,
    "pagesProcessed": 1
  }
}

Get Links

GET /v1/links HTTP/1.1
Host: api.checkoutlinks.com
Authorization: Bearer <TOKEN>
X-Shopify-Shop: yourshop.myshopify.com
Content-Type: application/json
Authorization
string
required
Checkout Links access token. Format: Bearer <token>
X-Shopify-Shop
string
required
Shop domain (e.g., yourshop.myshopify.com).
limit
integer
Maximum number of results to return.
{
  "status": "success",
  "data": {
    "links": [
      {
        "shortcode": "abc123",
        "slug": "abc123",
        "name": "Holiday Sale Link",
        "status": "active",
        "type": "regular"
      },
      {
        "shortcode": "def456",
        "slug": "def456",
        "name": "Spring Sale Link",
        "status": "draft",
        "type": "regular"
      }
    ],
    "total": 2,
    "pagesProcessed": 1
  }
}