**Version: 202601**

# List URL redirects

**GET** `/openapi/2026-01/redirects`

Retrieve a list of all url redirect with pagination.

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `count` int32

    The total number of redirects in the store
  - `redirects` object[]

    The list of URL redirects

    *   Array \[

    - `id` int64

      Redirect ID
    - `store_id` int32

      ID of the store where the redirect is created
    - `status` string

      Status of the redirect
    - `from_url` string

      The original URL specified for redirection
    - `redirect_url` string

      The target URL specified for the redirection
    *   \]

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "count": 0,
    "redirects": [
      {
        "id": 0,
        "store_id": 0,
        "status": "string",
        "from_url": "string",
        "redirect_url": "string"
      }
    ]
  }
}
```
