POST /v1/signals/leads with sheet_ids and signals to read leads from a specific sheet or buying signal.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.plyne.ai/v1/signals/agents \
--header 'Authorization: Bearer plyne_...' \
--header 'Content-Type: application/json' \
--data '{
"cursor": { "limit": 50 }
}'
{
"data": [
{
"id": "d8m13il8samas88tvoq0",
"type": "intent_signals",
"name": "Intent Signals",
"status": "active",
"schedule": "4x daily",
"next_check_at": "2026-06-17T02:03:00Z",
"sheet": {
"id": "d8m13il8samas88tvop0",
"name": "AI infrastructure buyers"
}
},
{
"id": "d8cln7t8sam5q17hnr9g",
"type": "intent_signals",
"name": "Intent Signals",
"status": "paused",
"schedule": "4x daily",
"sheet": {
"id": "d8cln7t8sam5q17hnr8g",
"name": "FinOps hiring signals"
}
}
],
"cursor": {
"next": "",
"has_more": false
}
}
Read dashboard-configured Signal Agents.
curl --request POST \
--url https://api.plyne.ai/v1/signals/agents \
--header 'Authorization: Bearer plyne_...' \
--header 'Content-Type: application/json' \
--data '{
"cursor": { "limit": 50 }
}'
{
"data": [
{
"id": "d8m13il8samas88tvoq0",
"type": "intent_signals",
"name": "Intent Signals",
"status": "active",
"schedule": "4x daily",
"next_check_at": "2026-06-17T02:03:00Z",
"sheet": {
"id": "d8m13il8samas88tvop0",
"name": "AI infrastructure buyers"
}
},
{
"id": "d8cln7t8sam5q17hnr9g",
"type": "intent_signals",
"name": "Intent Signals",
"status": "paused",
"schedule": "4x daily",
"sheet": {
"id": "d8cln7t8sam5q17hnr8g",
"name": "FinOps hiring signals"
}
}
],
"cursor": {
"next": "",
"has_more": false
}
}
POST /v1/signals/agents
Bearer authentication header of the form Bearer <token>, where <token> is your API key.
Number of Signal Agents to return. Maximum value is 100.
Example: 50
Opaque cursor returned as cursor.next from the previous response.
Filter by agent status, such as active or paused.
Return specific Signal Agents by ID.
POST /v1/signals/leads with sheet_ids and signals to read leads from a specific sheet or buying signal.