> For the complete documentation index, see [llms.txt](https://gitbook-docs.coinmetrics.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gitbook-docs.coinmetrics.io/cm-api-spec/taxonomy/taxonomy-for-assets.md).

# Taxonomy for assets

Returns Taxonomy for assets.\
Results are ordered by tuple `(asset, classification_start_time)`.\
To fetch the next page of results use `next_page_url` JSON response field.

```json
{"openapi":"3.0.2","info":{"title":"Coin Metrics API v4","version":"4.0.0"},"tags":[{"name":"Taxonomy","description":"Taxonomy endpoints\n\n**Sections in this group:**\n- **Taxonomy Metadata** (1 endpoint)\n\n**Endpoints on this page:**\n- `GET /taxonomy/assets` — Taxonomy for assets"}],"servers":[{"url":"https://api.coinmetrics.io/v4"},{"url":"wss://api.coinmetrics.io/v4"},{"url":"https://community-api.coinmetrics.io/v4"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"description":"Coin Metrics API key can be specified as `?api_key=` query parameter.","in":"query","name":"api_key","type":"apiKey"}},"parameters":{"TaxonomyAssets":{"description":"Comma separated list of assets.","in":"query","name":"assets","required":false,"schema":{"type":"array","items":{"type":"string"}},"explode":false},"TaxonomyClassIds":{"description":"Comma separated list of class identifiers.","in":"query","name":"class_ids","required":false,"schema":{"type":"array","items":{"type":"string"}},"explode":false},"TaxonomySectorIds":{"description":"Comma separated list of sector identifiers.","in":"query","name":"sector_ids","required":false,"schema":{"type":"array","items":{"type":"string"}},"explode":false},"TaxonomySubsectorIds":{"description":"Comma separated list of subsector identifiers.","in":"query","name":"subsector_ids","required":false,"schema":{"type":"array","items":{"type":"string"}},"explode":false},"TaxonomyVersion":{"description":"Taxonomy version. Defaults to `latest` when no `*_time` parameters specified. Specify asterisk `*` in order to get all versions.","in":"query","name":"version","required":false,"schema":{"type":"string"}},"TaxonomyAssetClassificationStartTime":{"description":"Start time of taxonomy asset classification.<br/> Multiple formats of ISO 8601 are supported: `2006-01-20T00:00:00Z`, `2006-01-20T00:00:00.000Z`, `2006-01-20T00:00:00.123456Z`, `2006-01-20T00:00:00.123456789Z`, `2006-01-20`, `20060120`.<br/> Inclusive by default.<br/>","in":"query","name":"classification_start_time","required":false,"schema":{"type":"string"}},"TaxonomyAssetClassificationEndTime":{"description":"End time of taxonomy asset classification.<br/> Multiple formats of ISO 8601 are supported: `2006-01-20T00:00:00Z`, `2006-01-20T00:00:00.000Z`, `2006-01-20T00:00:00.123456Z`, `2006-01-20T00:00:00.123456789Z`, `2006-01-20`, `20060120`.<br/> Inclusive by default.<br/>","in":"query","name":"classification_end_time","required":false,"schema":{"type":"string"}},"StartInclusive":{"description":"Inclusive or exclusive corresponding `start_*` parameters.","in":"query","name":"start_inclusive","schema":{"default":true,"type":"boolean"}},"EndInclusive":{"description":"Inclusive or exclusive corresponding `end_*` parameters.","in":"query","name":"end_inclusive","schema":{"default":true,"type":"boolean"}},"PageSize":{"description":"Number of items per single page of results.<br/> The value of this parameter is ignored if the endpoint supports the `format` parameter and its value is set to `json_stream`.","in":"query","name":"page_size","schema":{"default":100,"type":"integer","format":"int32","minimum":1,"maximum":10000}},"PagingFromWithStartByDefault":{"description":"Where does the first page start, at the start of the interval or at the end.<br/> The value of this parameter is ignored if the endpoint supports the `format` parameter and its value is set to `json_stream`.","in":"query","name":"paging_from","schema":{"default":"start","enum":["start","end"],"type":"string","format":"PagingFrom"}},"NextPageToken":{"description":"Token for receiving the results from the next page of a query.<br/> Should not be used directly. To iterate through pages just use `next_page_url` response field.","in":"query","name":"next_page_token","schema":{"type":"string"}},"Pretty":{"description":"Human-readable formatting of JSON responses.","in":"query","name":"pretty","schema":{"type":"boolean","default":false}}},"responses":{"TaxonomyAssets":{"description":"Assets' taxonomy.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaxonomyAssetsResponse"}}}},"Unauthorized":{"description":"Requested resource requires authorization.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"Forbidden":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}},"description":"Requested resource is not available with supplied credentials."},"UriTooLong":{"description":"Provided URI is too long. It must not be greater than 10000 symbols."}},"schemas":{"TaxonomyAssetsResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/TaxonomyAsset"},"type":"array"},"next_page_token":{"$ref":"#/components/schemas/NextPageToken"},"next_page_url":{"$ref":"#/components/schemas/NextPageUrl"}},"required":["data"],"type":"object"},"TaxonomyAsset":{"description":"Information about taxonomy of an asset.","properties":{"asset":{"$ref":"#/components/schemas/Asset"},"full_name":{"$ref":"#/components/schemas/TaxonomyAssetFullName"},"taxonomy_version":{"$ref":"#/components/schemas/TaxonomyVersion"},"updated_at_taxonomy_version":{"$ref":"#/components/schemas/UpdatedAtTaxonomyVersion"},"classification_start_time":{"$ref":"#/components/schemas/TaxonomyAssetClassificationStartTime"},"classification_end_time":{"$ref":"#/components/schemas/TaxonomyAssetClassificationEndTime"},"class_id":{"$ref":"#/components/schemas/TaxonomyClassId"},"class":{"$ref":"#/components/schemas/TaxonomyClass"},"sector_id":{"$ref":"#/components/schemas/TaxonomySectorId"},"sector":{"$ref":"#/components/schemas/TaxonomySector"},"subsector_id":{"$ref":"#/components/schemas/TaxonomySubsectorId"},"subsector":{"$ref":"#/components/schemas/TaxonomySubsector"}},"type":"object","required":["asset","full_name","updated_at_taxonomy_version","taxonomy_version","classification_start_time","class_id","class","sector_id","sector","subsector_id","subsector"]},"Asset":{"description":"Name of the asset.","type":"string"},"TaxonomyAssetFullName":{"description":"The full name of the asset.","type":"string"},"TaxonomyVersion":{"description":"This field is obsolete and will be removed in future releases in favor to `updated_at_taxonomy_version` field.","type":"string"},"UpdatedAtTaxonomyVersion":{"description":"Taxonomy version the asset was classified or re-classified at.","type":"string"},"TaxonomyAssetClassificationStartTime":{"description":"Taxonomy asset's classification start time.","type":"string","format":"date-time"},"TaxonomyAssetClassificationEndTime":{"description":"Taxonomy asset's classification end time.","type":"string","format":"date-time"},"TaxonomyClassId":{"description":"Taxonomy class identifier.","type":"string"},"TaxonomyClass":{"description":"Taxonomy class name.","type":"string"},"TaxonomySectorId":{"description":"Taxonomy sector identifier.","type":"string"},"TaxonomySector":{"description":"Taxonomy sector name.","type":"string"},"TaxonomySubsectorId":{"description":"Taxonomy subsector identifier.","type":"string"},"TaxonomySubsector":{"description":"Taxonomy subsector name.","type":"string"},"NextPageToken":{"description":"Token of the next page results for a given request.","type":"string"},"NextPageUrl":{"description":"URL of the next page results for a given request.","type":"string"},"ErrorResponse":{"properties":{"error":{"$ref":"#/components/schemas/ErrorObject"}},"required":["error"],"type":"object"},"ErrorObject":{"properties":{"type":{"description":"Error type string. Can be used for error identification.","type":"string"},"message":{"description":"Human-friendly error description. Can be amended without prior notification. Do not use for error identification in your code.","type":"string"}},"required":["type","description"],"type":"object"}}},"paths":{"/taxonomy/assets":{"get":{"summary":"Taxonomy for assets","description":"Returns Taxonomy for assets.<br/> Results are ordered by tuple `(asset, classification_start_time)`.<br/> To fetch the next page of results use `next_page_url` JSON response field.","operationId":"getTaxonomyAssets","tags":["Taxonomy"],"parameters":[{"$ref":"#/components/parameters/TaxonomyAssets"},{"$ref":"#/components/parameters/TaxonomyClassIds"},{"$ref":"#/components/parameters/TaxonomySectorIds"},{"$ref":"#/components/parameters/TaxonomySubsectorIds"},{"$ref":"#/components/parameters/TaxonomyVersion"},{"$ref":"#/components/parameters/TaxonomyAssetClassificationStartTime"},{"$ref":"#/components/parameters/TaxonomyAssetClassificationEndTime"},{"$ref":"#/components/parameters/StartInclusive"},{"$ref":"#/components/parameters/EndInclusive"},{"$ref":"#/components/parameters/PageSize"},{"$ref":"#/components/parameters/PagingFromWithStartByDefault"},{"$ref":"#/components/parameters/NextPageToken"},{"$ref":"#/components/parameters/Pretty"}],"responses":{"200":{"$ref":"#/components/responses/TaxonomyAssets"},"401":{"$ref":"#/components/responses/Unauthorized"},"403":{"$ref":"#/components/responses/Forbidden"},"414":{"$ref":"#/components/responses/UriTooLong"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://gitbook-docs.coinmetrics.io/cm-api-spec/taxonomy/taxonomy-for-assets.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
