cURL
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" } ]
Get list of datasets available to the current user.
The access token received from the authorization server in the OAuth 2.0 flow.
Success
The response is of type object[].
object[]