Skip to main content
GET
/
boards
List board tasks
curl --request GET \
  --url https://api.surefeedback.com/api/v1/boards \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "columns": {
      "OPEN": [],
      "IN_PROGRESS": [],
      "RESOLVED": []
    },
    "pagination": {
      "current_page": 1,
      "per_page": 50,
      "total": 24,
      "last_page": 1
    }
  }
}
Returns board tasks across the current organization and project, grouped for Kanban display.
Requires authentication via X-API-Key: sf_your_api_key_here.

Query parameters

organization_id
string
UUID of the organization. Defaults to the user’s active organization.
project_id
string
UUID of the project. Defaults to the user’s active project.
site_id
string
Filter by a specific site.
status
string
Filter by status.
priority
string
Filter by priority: LOW, MEDIUM, HIGH, or URGENT.
assigned_to
string
UUID of the assigned user.
created_by
string
UUID of the comment creator.
Search tasks by content.
date_from
string
ISO 8601 start date filter.
date_to
string
ISO 8601 end date filter.
per_page
integer
Results per page. Default: 50.
page
integer
Page number. Default: 1.
{
  "success": true,
  "data": {
    "columns": {
      "OPEN": [],
      "IN_PROGRESS": [],
      "RESOLVED": []
    },
    "pagination": {
      "current_page": 1,
      "per_page": 50,
      "total": 24,
      "last_page": 1
    }
  }
}