Annotation endpoints
API token endpoints
Dataset endpoints
Map field endpoints
Monitor endpoints
Notifier endpoints
Organization endpoints
Role-based access control endpoints
Saved queries endpoints
User endpoints
Retrieve field in dataset
GET
/
datasets
/
{dataset_id}
/
fields
/
{field_id}
Copy
Ask AI
curl --request GET \
--url https://api.axiom.co/v2/datasets/{dataset_id}/fields/{field_id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"description": "<string>",
"hidden": true,
"name": "<string>",
"type": "<string>",
"unit": "<string>"
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Response
200 - application/json
DatasetField
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.axiom.co/v2/datasets/{dataset_id}/fields/{field_id} \
--header 'Authorization: Bearer <token>'
Copy
Ask AI
{
"description": "<string>",
"hidden": true,
"name": "<string>",
"type": "<string>",
"unit": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.