Tasks
Tasks are derived from ingested content and can be listed for follow-through.
List tasks
curl "https://api.fora.is/tasks?status=open" \
-H "Authorization: Bearer $FORA_TOKEN"
Query params
status:openorcompleted(default:open)waiting_on:trueorfalseq: search query (min 3 characters for full-text)sort:priorityorrecent(default:recent)
Submit feedback
curl -X POST "https://api.fora.is/tasks/123/feedback" \
-H "Authorization: Bearer $FORA_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"rating": "down"
}'
Feedback helps improve task extraction and prioritization.