> 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/meta-data/profile/asset-profiles-data-experimental.md).

# Asset profiles data (experimental)

Returns profile data for assets.\
Results are ordered by `asset`.\
To fetch the next page of results use `next_page_url` JSON response field.\
If `supply_cap` is not present then the theoretical maximum supply is infinite for that asset.

```json
{"openapi":"3.0.2","info":{"title":"Coin Metrics API v4","version":"4.0.0"},"tags":[{"name":"Profile","description":"Profile endpoints\n\n**Endpoints on this page:**\n- `GET /profile/assets` — Asset profiles data (experimental)\n- `GET /profile/networks` — Network profiles data (experimental)"}],"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":{"AssetProfileAssetIds":{"description":"Comma separated list of asset ids.<br/> By default profile data for all assets is returned. Mutually exclusive with `full_names` parameter.","in":"query","name":"assets","required":false,"schema":{"type":"array","items":{"type":"string"}},"explode":false},"AssetProfileFullNames":{"description":"Comma separated list of asset full names.<br/> By default profile data for all assets is returned. Mutually exclusive with `assets` parameter.","in":"query","name":"full_names","required":false,"schema":{"type":"array","items":{"type":"string"}},"explode":false},"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":{"AssetProfiles":{"description":"Asset profiles data.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AssetProfilesResponse"}}}},"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":{"AssetProfilesResponse":{"properties":{"data":{"items":{"$ref":"#/components/schemas/AssetProfileInfo"},"type":"array"},"next_page_token":{"$ref":"#/components/schemas/NextPageToken"},"next_page_url":{"$ref":"#/components/schemas/NextPageUrl"}},"required":["data"],"type":"object"},"AssetProfileInfo":{"description":"Asset profile data.","properties":{"asset":{"$ref":"#/components/schemas/AssetId"},"full_name":{"$ref":"#/components/schemas/AssetProfileFullName"},"description":{"$ref":"#/components/schemas/AssetProfileDescription"},"overview":{"$ref":"#/components/schemas/AssetProfileOverview"},"token_purpose":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileTokenPurpose"},"description":"Purpose of the asset."},"project_team":{"$ref":"#/components/schemas/AssetProfileProjectTeam"},"foundation":{"$ref":"#/components/schemas/AssetProfileFoundation"},"website":{"$ref":"#/components/schemas/AssetProfileWebsiteUrl"},"whitepaper_url":{"$ref":"#/components/schemas/AssetProfileWhitepaperUrl"},"creation_date":{"$ref":"#/components/schemas/AssetProfileCreationDate"},"token_generation_event_supply":{"$ref":"#/components/schemas/AssetProfileTokenGenerationEventSupply"},"supply_cap":{"$ref":"#/components/schemas/AssetProfileSupplyCap"},"initial_supply_token_distribution":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileInitialSupplyProjectDistribution"},"description":"Initial supply distribution."},"vesting_schedule":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileVestingSchedule"},"description":"Asset's vesting schedule."},"new_token_issuance_recipient":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileNewTokenIssuanceRecipient"},"description":"Token issuance recipient."},"issuing_networks":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileIssuingNetwork"},"description":"Issuing network."},"bridged_networks":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileBridgedNetwork"},"description":"Bridged network."},"issuance_schedule_changes":{"$ref":"#/components/schemas/AssetProfileIssuanceScheduleChanges"},"significant_historical_changes":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileSignificantHistoricalChanges"},"description":"Significant historical changes."},"upgrade_history":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileUpgradeHistory"},"description":"Asset's upgrade history."},"blog_updates":{"$ref":"#/components/schemas/AssetProfileBlogUpdates"},"project_github_repository":{"type":"array","items":{"$ref":"#/components/schemas/ProfileRepository"},"description":"Asset's repository."},"asset_regulation":{"$ref":"#/components/schemas/AssetProfileAssetRegulation"},"asset_regulated_products":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileAssetRegulatedProduct"},"description":"Asset's regulated product."},"etp_custodians":{"type":"array","items":{"$ref":"#/components/schemas/AssetProfileEtpCustodian"},"description":"Asset's ETP custodian."}},"type":"object","required":["asset","full_name","description","overview","creation_date"]},"AssetId":{"description":"Unique name of the asset.","type":"string"},"AssetProfileFullName":{"description":"Full name of the asset.","type":"string"},"AssetProfileDescription":{"description":"Description of the asset.","type":"string"},"AssetProfileOverview":{"description":"Overview of the asset.","type":"string"},"AssetProfileTokenPurpose":{"type":"string"},"AssetProfileProjectTeam":{"description":"Asset's project team.","type":"string"},"AssetProfileFoundation":{"description":"Asset foundation.","type":"string"},"AssetProfileWebsiteUrl":{"description":"Official website URL of the asset.","type":"string"},"AssetProfileWhitepaperUrl":{"description":"Official whitepaper URL of the asset.","type":"string"},"AssetProfileCreationDate":{"description":"Date of the asset creation (first block) in ISO 8601 format.","type":"string","format":"date-time"},"AssetProfileTokenGenerationEventSupply":{"description":"Asset's token generation event supply.","type":"string"},"AssetProfileSupplyCap":{"description":"Supply cap of the asset. If not present then the theoretical maximum supply is infinite for that asset.","type":"string","format":"int64"},"AssetProfileInitialSupplyProjectDistribution":{"type":"object","properties":{"initial_supply_allocation":{"$ref":"#/components/schemas/AssetProfileInitialSupplyAllocation"},"initial_supply_distribution":{"$ref":"#/components/schemas/AssetProfileInitialSupplyDistribution"}}},"AssetProfileInitialSupplyAllocation":{"description":"Initial supply allocation.","type":"string","format":"int64"},"AssetProfileInitialSupplyDistribution":{"description":"Initial supply distribution.","type":"string"},"AssetProfileVestingSchedule":{"type":"object","properties":{"vesting_schedule_allocation":{"$ref":"#/components/schemas/AssetProfileVestingScheduleAllocation"},"vesting_schedule_cliff":{"$ref":"#/components/schemas/AssetProfileVestingScheduleCliff"},"vesting_schedule_total_unlock_time":{"$ref":"#/components/schemas/AssetProfileVestingScheduleTotalUnlockTime"}}},"AssetProfileVestingScheduleAllocation":{"description":"Vesting schedule allocation.","type":"string"},"AssetProfileVestingScheduleCliff":{"description":"Vesting schedule cliff.","type":"string"},"AssetProfileVestingScheduleTotalUnlockTime":{"description":"Vesting schedule total unlock time.","type":"string","format":"date-time"},"AssetProfileNewTokenIssuanceRecipient":{"description":"Token issuance recipient.","type":"string"},"AssetProfileIssuingNetwork":{"type":"string"},"AssetProfileBridgedNetwork":{"type":"string"},"AssetProfileIssuanceScheduleChanges":{"description":"Issuance schedule changes.","type":"string"},"AssetProfileSignificantHistoricalChanges":{"type":"object","properties":{"date":{"$ref":"#/components/schemas/AssetProfileSignificantHistoricalChangesDate"},"details":{"$ref":"#/components/schemas/AssetProfileSignificantHistoricalChangesDetails"}}},"AssetProfileSignificantHistoricalChangesDate":{"description":"Date of significant historical change.","type":"string"},"AssetProfileSignificantHistoricalChangesDetails":{"description":"Details about significant historical change.","type":"string"},"AssetProfileUpgradeHistory":{"type":"object","properties":{"date":{"$ref":"#/components/schemas/AssetProfileUpgradeHistoryDate"},"details":{"$ref":"#/components/schemas/AssetProfileUpgradeHistoryDetails"}}},"AssetProfileUpgradeHistoryDate":{"description":"Date of the upgrade.","type":"string"},"AssetProfileUpgradeHistoryDetails":{"description":"Details about the upgrade.","type":"string"},"AssetProfileBlogUpdates":{"description":"Asset's blog updates.","type":"string"},"ProfileRepository":{"type":"string"},"AssetProfileAssetRegulation":{"description":"Asset's regulation.","type":"string"},"AssetProfileAssetRegulatedProduct":{"type":"string"},"AssetProfileEtpCustodian":{"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":{"/profile/assets":{"get":{"summary":"Asset profiles data (experimental)","description":"Returns profile data for assets.<br/> Results are ordered by `asset`.<br/> To fetch the next page of results use `next_page_url` JSON response field.<br/> If `supply_cap` is not present then the theoretical maximum supply is infinite for that asset.","operationId":"getAssetProfiles","tags":["Profile"],"parameters":[{"$ref":"#/components/parameters/AssetProfileAssetIds"},{"$ref":"#/components/parameters/AssetProfileFullNames"},{"$ref":"#/components/parameters/PageSize"},{"$ref":"#/components/parameters/PagingFromWithStartByDefault"},{"$ref":"#/components/parameters/NextPageToken"},{"$ref":"#/components/parameters/Pretty"}],"responses":{"200":{"$ref":"#/components/responses/AssetProfiles"},"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/meta-data/profile/asset-profiles-data-experimental.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.
