Skip to main content
GET
/
v1
/
campaigns
/
:id
Get a Campaign
curl --request GET \
  --url https://api.example.com/v1/campaigns/:id

Documentation Index

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

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

Get a Campaign

Retrieves the full details of a specific campaign by its ID.

Request

GET /v1/campaigns/:id

Path Parameters

ParameterTypeRequiredDescription
iduuidYesThe unique identifier of the campaign

Example

curl -X GET \
  "https://YOUR_PROJECT.supabase.co/functions/v1/api-gateway/v1/campaigns/c1d2e3f4-..." \
  -H "Authorization: Bearer rchd_live_xxxxxxxxxxxx"

Response

{
  "data": {
    "id": "c1d2e3f4-...",
    "name": "Q1 Outbound France",
    "status": "active",
    "parallel_calls": 3,
    "script_template": "Hi {first_name}, ...",
    "tags": ["france", "q1"],
    "created_at": "2026-03-01T09:00:00.000Z"
  }
}

Response Fields

FieldTypeDescription
iduuidCampaign unique identifier
namestringCampaign name
statusstringCurrent status
parallel_callsintegerNumber of parallel calls configured
script_templatestringCall script template with placeholders
tagsarrayTags associated with the campaign
created_atdatetimeCreation timestamp