Get list of datasets
curl --request GET \
--url https://api.axiom.co/v2/datasets \
--header 'Authorization: Bearer <token>'
[
{
"created": "2020-01-01T00:00:00Z",
"description": "This is an example dataset",
"id": "example-dataset",
"name": "example-dataset",
"who": "John Doe"
},
{
"created": "2020-02-01T00:00:00Z",
"description": "This is an example dataset",
"id": "example-dataset-2",
"name": "example-dataset-2",
"who": "Foo Bar"
}
]
The access token received from the authorization server in the OAuth 2.0 flow.
Success
The response is of type object[]
.
Was this page helpful?
curl --request GET \
--url https://api.axiom.co/v2/datasets \
--header 'Authorization: Bearer <token>'
[
{
"created": "2020-01-01T00:00:00Z",
"description": "This is an example dataset",
"id": "example-dataset",
"name": "example-dataset",
"who": "John Doe"
},
{
"created": "2020-02-01T00:00:00Z",
"description": "This is an example dataset",
"id": "example-dataset-2",
"name": "example-dataset-2",
"who": "Foo Bar"
}
]