Skip to main content
GET
/
outreach-sequences
List outreach sequences
curl --request GET \
  --url https://api.gospott.com/outreach-sequences \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "status": "PENDING",
      "purpose": "GENERIC",
      "vacancy": {
        "id": "<string>"
      },
      "candidate": {
        "id": "<string>"
      },
      "createdBy": {
        "id": "<string>"
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "modifiedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "hasMore": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.spott.io/llms.txt

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

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Query Parameters

limit
integer
default:25

Page size (1-100, default 25).

Required range: 1 <= x <= 100
searchQuery
string

Case-insensitive partial match on the sequence name. Must be at least 3 characters when provided.

Minimum string length: 3

Response

Successfully retrieved outreach sequences. Returns items array with pagination info containing cursor for the next page.

items
object[]
required

Sequences in the current page, sorted by modifiedAt desc.

pagination
object
required

Cursor pagination metadata.