# ERC20 Entity Status

Entity List of ERC20 API with Status

## Entity List

> This endpoint returns entity list to serve data.\
> The meaning of the \`market\_type\` value of the exchange object is as follows. For exchange objects, the \`market\_type\` field tells whether the exchange is a spot exchange or a derivative exchange. Entities without a market type, such as miners or banks, will return 0 for \`market\_type\`.\
> \|  Exchange Market Type  |  Description         |\
> \|------------------------|----------------------|\
> \|  0                     |  Undefined           |\
> \|  1                     |  Spot Exchange       |\
> \|  2                     |  Derivative Exchange |<br>

```json
{"openapi":"3.0.0","info":{"title":"CryptoQuant Data API","version":"1.3.0"},"tags":[{"name":"ERC20 Entity Status","description":"Entity List of ERC20 API with Status"}],"servers":[{"url":"https://api.cryptoquant.com/v1/","description":"Default server"}],"security":[{"Access Token":[]}],"components":{"securitySchemes":{"Access Token":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"For each API request, include this HTTP header:\n`Authorization` with the `Bearer {access_token}`. Bearer access token is the type of HTTP Authorization.  You have to include access token to the HTTP header and note that leading bearer is required.\nYou must include your access token in HTTP header in every request you make. The token is unique, issued for each client, and regularly changed(once a year). To obtain an access token, please [upgrade your plan](https://cryptoquant.com/pricing) to Professional or Premium plan. You'll be able to see your access token on the [API tab](https://cryptoquant.com/settings/api) of your profile page after the subscription."}},"parameters":{"token_erc20":{"description":"A ERC20 token from the table that we support. [See here](#tag/Supported-ERC20-List)","explode":false,"in":"query","name":"token","required":true,"schema":{"type":"string"},"style":"form"},"type_e":{"description":"A type from the entity in exchange.","explode":false,"in":"query","name":"type","required":true,"schema":{"type":"string"},"style":"form"},"format":{"description":"A format type about return message type. Supported formats are json, csv.","explode":false,"in":"query","name":"format","required":false,"schema":{"type":"string","default":"json"},"style":"form"}},"responses":{"responses_EntityList":{"description":"Entity list on a given type.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/schemas_EntityListResponse"}}}}},"schemas":{"schemas_EntityListResponse":{"type":"object","required":["status","result"],"properties":{"status":{"$ref":"#/components/schemas/Status"},"result":{"type":"object","required":["type","data"],"properties":{"type":{"$ref":"#/components/schemas/Type"},"data":{"type":"array","items":{"type":"object","required":["name","symbol","is_validated","market_type"],"properties":{"name":{"type":"string","description":"The name of entity."},"symbol":{"type":"string","description":"The name of calling symbol."},"is_validated":{"type":"int","description":"validated or in progress."},"market_type":{"type":"int","description":"Market type of entity."}}}}}}}},"Status":{"type":"object","description":"The status object is return with most of requests and indicates if the request was successful. If it is not successful, error information is included.","properties":{"code":{"type":"integer","format":"int32","description":"HTTP status code"},"message":{"type":"string","description":"Text description of the error or success."}},"required":["code","message"]},"Type":{"type":"string","description":"Type of given entity list. This field is one of \"exchange\", \"miner\""}}},"paths":{"/erc20/status/entity-list":{"get":{"tags":["ERC20 Entity Status"],"summary":"Entity List","description":"This endpoint returns entity list to serve data.\nThe meaning of the `market_type` value of the exchange object is as follows. For exchange objects, the `market_type` field tells whether the exchange is a spot exchange or a derivative exchange. Entities without a market type, such as miners or banks, will return 0 for `market_type`.\n|  Exchange Market Type  |  Description         |\n|------------------------|----------------------|\n|  0                     |  Undefined           |\n|  1                     |  Spot Exchange       |\n|  2                     |  Derivative Exchange |\n","operationId":"getERC20EntityList","parameters":[{"$ref":"#/components/parameters/token_erc20"},{"$ref":"#/components/parameters/type_e"},{"$ref":"#/components/parameters/format"}],"responses":{"200":{"$ref":"#/components/responses/responses_EntityList"}}}}}}
```
