Skip to main content
GET
/
radar
/
operator
/
v1
/
tracking-scripts
List tracking scripts
curl --request GET \
  --url https://api.snitcher.com/radar/operator/v1/tracking-scripts \
  --header 'Authorization: Bearer <token>'
{
  "current_page": 1,
  "last_page": 10,
  "per_page": 15,
  "total": 150,
  "next_page_url": "https://api.example.com/v1/workspaces?page=2",
  "prev_page_url": null,
  "first_page_url": "https://api.example.com/v1/workspaces?page=1",
  "last_page_url": "https://api.example.com/v1/workspaces?page=10",
  "path": "https://api.example.com/v1/workspaces",
  "from": 1,
  "to": 15,
  "data": [
    {
      "tracking_script_id": "<string>",
      "internal_identifier": "<string>",
      "active": true,
      "description": "<string>"
    }
  ],
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.snitcher.com/llms.txt

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

Authorizations

Authorization
string
header
required

Enter your personal access token (PAT) to authenticate

Query Parameters

description
string

Optional description filter

Example:

"Homepage tracker"

internal_identifier
string

Optional internal identifier filter

Example:

"homepage-tracker"

page
integer

The page number for pagination

Example:

1

size
integer

The number of trackingscripts per page (1-1000)

Required range: 1 <= x <= 1000
Example:

10

Response

Tracking scripts retrieved successfully

current_page
integer
Example:

1

last_page
integer
Example:

10

per_page
integer
Example:

15

total
integer
Example:

150

next_page_url
string | null
Example:

"https://api.example.com/v1/workspaces?page=2"

prev_page_url
string | null
Example:

null

first_page_url
string | null
Example:

"https://api.example.com/v1/workspaces?page=1"

last_page_url
string | null
Example:

"https://api.example.com/v1/workspaces?page=10"

path
string | null
Example:

"https://api.example.com/v1/workspaces"

from
integer | null
Example:

1

to
integer | null
Example:

15

data
object[]
success
boolean
Example:

true