curl -X GET "https://api.whatabot.app/api/v1/kanban/pipelines/pipeline-uuid/cards?stageId=stage-uuid&page=0&size=50" \
-H "X-Api-Key: wh_your_api_key"
{
"content": [
{
"id": "card-uuid",
"pipelineId": "pipeline-uuid",
"stageId": "stage-uuid",
"sessionId": "session-uuid",
"tags": ["hot"],
"values": {
"name": "John Doe",
"amount": 1500.00
},
"createdAt": "2026-04-20T10:00:00.000Z",
"movedAt": "2026-04-20T12:30:00.000Z"
}
],
"totalElements": 1,
"totalPages": 1,
"number": 0,
"size": 100,
"first": true,
"last": true,
"aggregations": {
"amount": 1500.00
}
}
Kanban
List Cards
List cards from a pipeline with filters and pagination.
GET
/
v1
/
kanban
/
pipelines
/
{pipelineId}
/
cards
curl -X GET "https://api.whatabot.app/api/v1/kanban/pipelines/pipeline-uuid/cards?stageId=stage-uuid&page=0&size=50" \
-H "X-Api-Key: wh_your_api_key"
{
"content": [
{
"id": "card-uuid",
"pipelineId": "pipeline-uuid",
"stageId": "stage-uuid",
"sessionId": "session-uuid",
"tags": ["hot"],
"values": {
"name": "John Doe",
"amount": 1500.00
},
"createdAt": "2026-04-20T10:00:00.000Z",
"movedAt": "2026-04-20T12:30:00.000Z"
}
],
"totalElements": 1,
"totalPages": 1,
"number": 0,
"size": 100,
"first": true,
"last": true,
"aggregations": {
"amount": 1500.00
}
}
Returns the cards of a specific pipeline. Supports filtering by stage, text search, creation date, and tags.
string
required
Your API key (prefixed with
wh_).string
required
Pipeline UUID.
Query Parameters
string
Filter by stage UUID.
string
Text search across card values.
string
Filter cards created after this date (ISO 8601 format).
string
Comma-separated tags (e.g.,
hot,enterprise).integer
default:"0"
Page number (zero-based).
integer
default:"100"
Items per page (max 500).
curl -X GET "https://api.whatabot.app/api/v1/kanban/pipelines/pipeline-uuid/cards?stageId=stage-uuid&page=0&size=50" \
-H "X-Api-Key: wh_your_api_key"
{
"content": [
{
"id": "card-uuid",
"pipelineId": "pipeline-uuid",
"stageId": "stage-uuid",
"sessionId": "session-uuid",
"tags": ["hot"],
"values": {
"name": "John Doe",
"amount": 1500.00
},
"createdAt": "2026-04-20T10:00:00.000Z",
"movedAt": "2026-04-20T12:30:00.000Z"
}
],
"totalElements": 1,
"totalPages": 1,
"number": 0,
"size": 100,
"first": true,
"last": true,
"aggregations": {
"amount": 1500.00
}
}