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

# Get tag summary

> Get a summary of the tags used across your account.

Return a summary of the tags in your account, including how often each tag is used.

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

<ResponseField name="usageNumber" type="integer">
  The number of resources that use this tag.
</ResponseField>

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

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