Skip to content
AbloAblo
Esc
navigateopen⌘Jpreview

List records of a model

GET/v1/models/{model}
Path parameters
modelstringrequired
Any model in your pushed schema. `task` is the running example.
Query parameters
limitinteger
order_bystring
orderstring
Allowed:ascdesc
Responses
200A page of rows
objectstring
Allowed:list
dataTask[]
Show properties
Array of Task
idstring
Server-assigned row id.
numbernumber | any
Show properties
Any of:
number
number
any
any
titlestringrequired
descriptionstring | any
Show properties
Any of:
string
string
any
any
statusstringrequired
default: "todo"
prioritystringrequired
default: "medium"
projectIdstring | any
Show properties
Any of:
string
string
any
any
teamIdstring | any
Show properties
Any of:
string
string
any
any
chatIdstring | any
Show properties
Any of:
string
string
any
any
parentIdstring | any
Show properties
Any of:
string
string
any
any
startDatestring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
endDatestring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
dueDatestring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
completedAtstring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
ordernumberrequired
default: 0
orderKeystring | any
Show properties
Any of:
string
string
any
any
metadatastring | any
Show properties
Any of:
string
string
any
any
archivedAtstring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
updatedBystring | any
Show properties
Any of:
string
string
any
any
Request
curl -X GET "https://api.abloatai.com/api/v1/models/task"
Response
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "number": 0,
      "title": "string",
      "description": "string",
      "status": "todo",
      "priority": "medium",
      "projectId": "string",
      "teamId": "string",
      "chatId": "string",
      "parentId": "string",
      "startDate": "2024-01-01T00:00:00Z",
      "endDate": "2024-01-01T00:00:00Z",
      "dueDate": "2024-01-01T00:00:00Z",
      "completedAt": "2024-01-01T00:00:00Z",
      "order": 0,
      "orderKey": "string",
      "metadata": "string",
      "archivedAt": "2024-01-01T00:00:00Z",
      "updatedBy": "string"
    }
  ]
}