> 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-metadata/taxonomy-metadata-for-assets.md).

# Taxonomy metadata for assets

Returns Taxonomy metadata for assets.\
Results are ordered by tuple `version`.\
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 Metadata","description":"Taxonomy Metadata endpoints\n\n**Endpoints on this page:**\n- `GET /taxonomy-metadata/assets` — Taxonomy metadata 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":{"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"}},"TaxonomyVersionStartTime":{"description":"Start time of taxonomy version.<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":"start_time","required":false,"schema":{"type":"string"}},"TaxonomyVersionEndTime":{"description":"End time of taxonomy version.<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":"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":{"TaxonomyMetadataAssets":{"description":"Assets' taxonomy metadata.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TaxonomyMetadataAssetsResponse"}}}},"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":{"TaxonomyMetadataAssetsResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/TaxonomyMetadataAsset"},"type":"array"},"next_page_token":{"$ref":"#/components/schemas/NextPageToken"},"next_page_url":{"$ref":"#/components/schemas/NextPageUrl"}},"required":["data"],"type":"object"},"TaxonomyMetadataAsset":{"description":"Information about taxonomy metadata of the assets.","properties":{"taxonomy_version":{"$ref":"#/components/schemas/TaxonomyVersion"},"taxonomy_start_time":{"$ref":"#/components/schemas/TaxonomyVersionStartTime"},"taxonomy_end_time":{"$ref":"#/components/schemas/TaxonomyVersionEndTime"},"subsectors":{"$ref":"#/components/schemas/TaxonomyMetadataSubsectors"}},"type":"object","required":["taxonomy_version","taxonomy_start_time","subsectors"]},"TaxonomyVersion":{"description":"This field is obsolete and will be removed in future releases in favor to `updated_at_taxonomy_version` field.","type":"string"},"TaxonomyVersionStartTime":{"description":"Taxonomy version's start time.","type":"string","format":"date-time"},"TaxonomyVersionEndTime":{"description":"Taxonomy version's end time.","type":"string","format":"date-time"},"TaxonomyMetadataSubsectors":{"description":"Taxonomy metadata subsectors.","items":{"$ref":"#/components/schemas/TaxonomyMetadataSubsector"},"type":"array"},"TaxonomyMetadataSubsector":{"description":"Taxonomy metadata subsector.","properties":{"class_id":{"$ref":"#/components/schemas/TaxonomyMetadataSubsectorClassId"},"class":{"$ref":"#/components/schemas/TaxonomyMetadataSubsectorClass"},"sector_id":{"$ref":"#/components/schemas/TaxonomyMetadataSubsectorSectorId"},"sector":{"$ref":"#/components/schemas/TaxonomyMetadataSubsectorSector"},"subsector_id":{"$ref":"#/components/schemas/TaxonomyMetadataSubsectorSubsectorId"},"subsector":{"$ref":"#/components/schemas/TaxonomyMetadataSubsectorSubsector"}},"type":"object"},"TaxonomyMetadataSubsectorClassId":{"description":"Taxonomy metadata subsector class identifier.","type":"string"},"TaxonomyMetadataSubsectorClass":{"description":"Taxonomy metadata subsector class name.","type":"string"},"TaxonomyMetadataSubsectorSectorId":{"description":"Taxonomy metadata sector identifier.","type":"string"},"TaxonomyMetadataSubsectorSector":{"description":"Taxonomy metadata sector name.","type":"string"},"TaxonomyMetadataSubsectorSubsectorId":{"description":"Taxonomy metadata subsector identifier.","type":"string"},"TaxonomyMetadataSubsectorSubsector":{"description":"Taxonomy metadata 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-metadata/assets":{"get":{"summary":"Taxonomy metadata for assets","description":"Returns Taxonomy metadata for assets.<br/> Results are ordered by tuple `version`.<br/> To fetch the next page of results use `next_page_url` JSON response field.","operationId":"getTaxonomyMetadataAssets","tags":["Taxonomy Metadata"],"parameters":[{"$ref":"#/components/parameters/TaxonomyVersion"},{"$ref":"#/components/parameters/TaxonomyVersionStartTime"},{"$ref":"#/components/parameters/TaxonomyVersionEndTime"},{"$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/TaxonomyMetadataAssets"},"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-metadata/taxonomy-metadata-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.
