GET
/
datasets
curl --request GET \
  --url https://api.axiom.co/v1/datasets \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "example-dataset",
    "name": "example-dataset",
    "description": "This is an example dataset",
    "who": "John Doe",
    "created": "2020-01-01T00:00:00.000Z"
  },
  {
    "id": "example-dataset-2",
    "name": "example-dataset-2",
    "description": "This is an example dataset",
    "who": "Foo Bar",
    "created": "2020-02-01T00:00:00.000Z"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200
application/json
Success

The response is of type object[].