Skip to main content
POST
/
v1
/
reporters
/
{reporter_id}
/
process
Run a workflow
curl --request POST \
  --url https://api.clipping.cc/v1/reporters/{reporter_id}/process \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source": "<string>",
  "workflow_id": "<string>",
  "collection_ids": [
    "<string>"
  ],
  "transcript_text": "<string>",
  "tool_params": {}
}
'
{
  "execution": {
    "execution_id": "<string>",
    "status": "<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

Body

application/json
source
string
required
workflow_id
string
collection_ids
string[]
transcript_text
string
tool_params
object

Response

Execution created.

execution
object