> For the complete documentation index, see [llms.txt](https://docs.blockchainsecurity.asia/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.blockchainsecurity.asia/api-reference/readme/assets-and-market-data/zi-chan-shi-bie-jie-xi.md).

# 資產識別解析

將資產代碼或合約地址解析成標準資產識別，協助確認實際資產並降低同名代幣或跨鏈資產造成的誤判。

## POST /v1/resolve

>

```json
{"openapi":"3.1.0","info":{"title":"Blockchain Atlantis API Gateway","version":"0.1.0"},"tags":[{"description":"將資產代碼或合約地址解析成標準資產識別，協助確認實際資產並降低同名代幣或跨鏈資產造成的誤判。","name":"資產識別解析"}],"servers":[{"description":"Production","url":"https://api.blockchainsecurity.asia"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"in":"header","name":"X-API-Key","type":"apiKey"}},"schemas":{"ResolveRequest":{"description":"`POST /v1/resolve` 的請求 body。\n\n宣告型別讓 `/docs` UI 帶出可填的 body 欄位（否則送空 POST 會撞 415）。","properties":{"blockchain":{"description":"鏈別（ethereum / bsc / tron …）。","type":"string"},"contracts":{"description":"contract-first（較防偽）：合約位址清單，元素為 `null` 代表原生幣。\n與 `symbols` 同時給時以 `contracts` 為準。","items":{"type":["string","null"]},"type":["array","null"]},"symbols":{"description":"要解析的 symbol 清單；省略 / 空 / 含 `all` 代表該鏈全部。","items":{"type":"string"},"type":["array","null"]}},"required":["blockchain"],"type":"object"}}},"paths":{"/v1/resolve":{"post":{"operationId":"resolve","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResolveRequest"}}},"description":"要解析的鏈與 symbols / contracts","required":true},"responses":{"200":{"content":{"application/json":{}},"description":"解析成功，回傳標準化的資產識別"},"400":{"description":"請求參數有誤（不支援的鏈別或格式錯誤），請檢查輸入內容"},"401":{"description":"缺少或無效的 API key"}},"summary":"","tags":["資產識別解析"]}}}}
```
