> 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/search.md).

# Search

地址模糊搜尋 / 自動完成（轉發 fuzzy-search）

## GET /v1/addresses/autocomplete

> \`GET /v1/addresses/autocomplete\`：前綴自動完成（type-ahead，q 至少 5 字）。

```json
{"openapi":"3.1.0","info":{"title":"Blockchain Atlantis API Gateway","version":"0.1.0"},"tags":[{"name":"search","description":"地址模糊搜尋 / 自動完成（轉發 fuzzy-search）"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"type":"apiKey","in":"header","name":"X-API-Key"}}},"paths":{"/v1/addresses/autocomplete":{"get":{"tags":["search"],"summary":"`GET /v1/addresses/autocomplete`：前綴自動完成（type-ahead，q 至少 5 字）。","operationId":"autocomplete","parameters":[{"name":"q","in":"query","description":"地址前綴（至少 5 字）","required":true,"schema":{"type":"string"}},{"name":"chain","in":"query","description":"鏈別；省略則由服務嘗試推斷","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"候選數上限","required":false,"schema":{"type":"integer","format":"int32","minimum":0}}],"responses":{"200":{"description":"前綴搜尋候選（包在 data/meta 信封內）"},"400":{"description":"缺少 q / q 太短 / 無法推斷 chain"},"401":{"description":"缺少或無效的 API key"}}}}}}
```

## GET /v1/addresses/resolve

> \`GET /v1/addresses/resolve\`：完整地址驗證 / 糾錯。

```json
{"openapi":"3.1.0","info":{"title":"Blockchain Atlantis API Gateway","version":"0.1.0"},"tags":[{"name":"search","description":"地址模糊搜尋 / 自動完成（轉發 fuzzy-search）"}],"security":[{"api_key":[]}],"components":{"securitySchemes":{"api_key":{"type":"apiKey","in":"header","name":"X-API-Key"}}},"paths":{"/v1/addresses/resolve":{"get":{"tags":["search"],"summary":"`GET /v1/addresses/resolve`：完整地址驗證 / 糾錯。","operationId":"resolve","parameters":[{"name":"q","in":"query","description":"完整地址（驗證 / 糾錯）","required":true,"schema":{"type":"string"}},{"name":"chain","in":"query","description":"鏈別；省略則由服務嘗試推斷","required":false,"schema":{"type":"string"}},{"name":"limit","in":"query","description":"相似候選數上限","required":false,"schema":{"type":"integer","format":"int32","minimum":0}}],"responses":{"200":{"description":"解析結果（match + candidates，包在 data/meta 信封內）"},"400":{"description":"缺少 q / 無法推斷 chain"},"401":{"description":"缺少或無效的 API key"}}}}}}
```


---

# 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:

```
GET https://docs.blockchainsecurity.asia/api-reference/readme/search.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
