Skip to main content
GET
/
v1
/
reporters
/
{reporter_id}
/
schedules
List schedules
curl --request GET \
  --url https://api.clipping.cc/v1/reporters/{reporter_id}/schedules \
  --header 'Authorization: Bearer <token>'
{
  "schedules": [
    {
      "schedule_id": "<string>",
      "reporter_id": "<string>",
      "name": "<string>",
      "enabled": true,
      "interval_hours": 123,
      "workflow_id": "<string>",
      "collection_ids": [
        "<string>"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.clipping.cc/llms.txt

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

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer ck_live_…

Path Parameters

reporter_id
string
required

Response

Schedules with collection ids.

schedules
object[]