campaigns/list uses cursor pagination and returns campaigns newest first. The default page size is 25 and the maximum is 100.
nextCursor is non-null, pass it unchanged in the next request:
nextCursor is null.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Traverse campaigns with opaque cursor pagination.
campaigns/list uses cursor pagination and returns campaigns newest first. The default page size is 25 and the maximum is 100.
curl --request POST \
--url https://api.datalane.com/v1/campaigns/list \
--header "Authorization: Bearer $DATALANE_API_KEY" \
--header "Content-Type: application/json" \
--data '{"limit": 100, "filters": {"createdVia": "api"}}'
nextCursor is non-null, pass it unchanged in the next request:
{
"limit": 100,
"cursor": "CURSOR_FROM_PREVIOUS_RESPONSE",
"filters": {
"createdVia": "api"
}
}
400 invalid_request.nextCursor is null.