Skip to main content
GET
/
funnels
/
lookup
/
redirect
/
list
Fetch List of Redirects
curl --request GET \
  --url https://services.leadconnectorhq.com/funnels/lookup/redirect/list \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "count": 42,
    "data": []
  }
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Query Parameters

locationId
string
required
Example:

"6p2RxpgtMKQwO3E6IUaT"

Example:

"example.com"

limit
number
required
Example:

20

offset
number
required
Example:

10

Response

Successful response - List of URL redirects returned

data
object
required

Object containing the count of redirects and an array of redirect data

Example:
{ "count": 42, "data": [] }
Last modified on March 4, 2026