GET
/
v1
/
data
List data
curl --request GET \
  --url https://dovetail.com/api/v1/data \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "data",
      "title": "<string>",
      "project": {
        "id": "<string>",
        "title": "<string>"
      },
      "created_at": "<string>",
      "deleted": true
    }
  ],
  "page": {
    "total_count": 123,
    "has_more": true,
    "next_cursor": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page
object

See Pagination for details about how to use a cursor to iterate through the list.

filter
object

See Filters for details on parameter formatting.

sort
default:created_at:desc

See Sort for details on the sort parameter.

Available options:
created_at:asc,
created_at:desc,
title:asc,
title:desc

Response

200
application/json

200

The response is of type object.