/ideas
ideas:read
Header'lar
Authorization
*API key. Format: Bearer xpl_live_...
Query parametreleri
socialSetId
Narrows results to one Social Set id.
folderId
Specific folder id. For ideas without folders, send folderId=null.
status
active returns active ideas only, archived returns archived ideas only, and all returns both. The default is active.
limit
Number of records per page. Default is 50, maximum is 100.
cursor
The pagination.nextCursor value from the previous answer.
folder filter
folderId yok
It lists the ideas accessible by the API key without distinguishing between folders.
folderId=null
It only returns ideas that are not bound to the folder. The empty folderId value is also interpreted as null.
folderId=fld_123
It only lists ideas linked to the given folder.
sıralama
Results are sorted by creation date, newest to oldest.
Cevaplar
Paged list of ideas.
cURL
curl "https://api.xplanner.co/v1/ideas?socialSetId=set_123&folderId=fld_123&limit=20" \ -H "Authorization: Bearer $XPLANNER_API_KEY"Cevap
{ "data": [ { "id": "idea_123", "socialSetId": "set_123", "folderId": "fld_123", "title": "API lansmanı", "content": "Public API ile içerik akışını dış araçlara aç.", "isPinned": false, "archivedAt": null, "workspaceId": "wrk_123", "createdAt": "2026-05-15T09:00:00.000Z", "updatedAt": "2026-05-15T09:00:00.000Z" } ], "pagination": { "nextCursor": null }, "requestId": "req_123"}