Skip to main content
GET
/
api
/
v1
/
redirects
List Redirects
curl --request GET \
  --url https://api.launchmystore.io/api/v1/redirects \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "redirects": [
      {
        "id": "redir_001",
        "path": "/old-product",
        "target": "/products/new-product",
        "created_at": "2024-01-15T10:30:00Z"
      },
      {
        "id": "redir_002",
        "path": "/sale",
        "target": "/collections/clearance",
        "created_at": "2024-01-10T08:00:00Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 50,
      "total": 23
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

page
number
default:"1"
Page number
limit
number
default:"50"
Items per page

Response

{
  "success": true,
  "data": {
    "redirects": [
      {
        "id": "redir_001",
        "path": "/old-product",
        "target": "/products/new-product",
        "created_at": "2024-01-15T10:30:00Z"
      },
      {
        "id": "redir_002",
        "path": "/sale",
        "target": "/collections/clearance",
        "created_at": "2024-01-10T08:00:00Z"
      }
    ],
    "pagination": {
      "page": 1,
      "limit": 50,
      "total": 23
    }
  }
}