Skip to main content
GET
/
tasks
Get Tasks
curl --request GET \
  --url https://api.projectcor.com/v1/tasks \
  --header 'Authorization: Bearer <token>'
{
  "total": "<string>",
  "perPage": 123,
  "page": 123,
  "lastPage": 123,
  "data": [
    {
      "id": 123,
      "title": "<string>",
      "project_id": 123,
      "description": "<string>",
      "deadline": "2023-11-07T05:31:56Z",
      "status": "nueva",
      "priority": 0,
      "archived": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.projectcor.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
default:1

Page number (default: 1). Set to false to disable pagination.

perPage
integer
default:20

Number of items per page (default: 20).

filters
string

Filters for the task list, expressed as a JSON object URL-encoded into this query string.

Examples of common keys

  • projects — One project ID, or an array of project IDs.
  • pm — One user ID, or an array of user IDs for the task PM.
  • status — One status or several; examples: nueva, en_proceso, finalizada.

Other supported keys in the same object include labels, categories, clients, collaborator, priority, and sprints.

Important: Use only this parameter for filtering. Do not add extra query parameters such as ?project_id= or ?user_id=.

order
string

Optional sort specification as a JSON object URL-encoded into this query string.

For each field you want to sort by, set the value to ASC or DESC (where supported).

Sortable fields include client, project, task, deadline, datetime, pm, priority, and sprint.

The response also uses a default tie-breaker: the task's defined order ascending.

Response

200 - application/json

Paginated list of tasks

Paginated response for tasks list

total

Total number of tasks

perPage
integer

Number of items per page

page
integer

Current page number

lastPage
integer

Last available page number

data
object[]

Array of tasks for the current page