# Utility

## Get available blockchains

> Get available blockchains

```json
{"openapi":"3.0.3","info":{"title":"Clypto API","version":"1.0.0"},"servers":[{"url":"https://api.clypto.com","description":"Production"},{"url":"http://localhost:8080","description":"Local Development"}],"security":[{"apiKey":[]}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","name":"x-api-key","in":"header"}}},"paths":{"/v1/chains":{"get":{"summary":"Get available blockchains","tags":["Utility"],"description":"Get available blockchains","responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"chainId":{"type":"string"},"chainName":{"type":"string"},"logoURI":{"type":"string"}},"required":["chainId","chainName","logoURI"]}}}}}}}}}}
```

## Get available providers

> Get available blockchains

```json
{"openapi":"3.0.3","info":{"title":"Clypto API","version":"1.0.0"},"servers":[{"url":"https://api.clypto.com","description":"Production"},{"url":"http://localhost:8080","description":"Local Development"}],"security":[{"apiKey":[]}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","name":"x-api-key","in":"header"}}},"paths":{"/v1/providers":{"get":{"summary":"Get available providers","tags":["Utility"],"description":"Get available blockchains","responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"provider":{"type":"string"},"logoURI":{"type":"string"}},"required":["provider","logoURI"]}}}}}}}}}}
```

## Get token list by providers, chains

> Get token list by providers, chains

```json
{"openapi":"3.0.3","info":{"title":"Clypto API","version":"1.0.0"},"servers":[{"url":"https://api.clypto.com","description":"Production"},{"url":"http://localhost:8080","description":"Local Development"}],"security":[{"apiKey":[]}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","name":"x-api-key","in":"header"}}},"paths":{"/v1/tokens":{"get":{"summary":"Get token list by providers, chains","tags":["Utility"],"description":"Get token list by providers, chains","parameters":[{"schema":{"type":"string"},"in":"query","name":"provider","required":false,"description":"Comma-separated providers"},{"schema":{"type":"string"},"in":"query","name":"chain","required":false,"description":"Comma-separated chains"}],"responses":{"200":{"description":"Default Response","content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"name":{"type":"string"},"timestamp":{"type":"string"},"version":{"type":"object","properties":{"major":{"type":"number"},"minor":{"type":"number"},"patch":{"type":"number"}},"required":["major","minor","patch"]},"counts":{"type":"number"},"tokens":{"type":"array","items":{"type":"object","properties":{"chainId":{"type":"string"},"address":{"type":"string"},"decimals":{"type":"number"},"symbol":{"type":"string"},"name":{"type":"string"},"logoURI":{"anyOf":[{"type":"string"},{"type":"null"}]},"coingeckoId":{"type":"string"}},"required":["chainId","address","decimals","symbol","name","logoURI","coingeckoId"]}}},"required":["name","timestamp","version","counts","tokens"]}}}}}}}}}}
```
