> ## Documentation Index
> Fetch the complete documentation index at: https://developers.eyequant.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search tags

> Search the tags available for a given resource type.

Search the tags available for a given resource type.

<Note>
  This endpoint was only partially defined in the source API specification. Confirm the exact path, parameters, and response shape against the live API before publishing.
</Note>

<ParamField path="resource_type" type="string" required>
  The type of resource to search tags for.
</ParamField>

<ResponseField name="name" type="string">
  The tag name.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl \
    -X GET \
    -H "Authorization: Bearer $apikey" \
    https://api.eyequant.com/v2/tag-search/analysis
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    { "name": "Europe" },
    { "name": "Africa" }
  ]
  ```
</ResponseExample>
