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

# Get tags for category

> Retrieve a tag category and its associated tags by category ID.



## OpenAPI

````yaml /reference/manage-vanta.json get /customer-trust/tag-categories/{tagCategoryId}
openapi: 3.0.0
info:
  title: Manage Vanta
  version: 1.0.0
  description: >-
    The REST API lets customers query and mutate Vanta's data. Use this API to
    automate bulk actions, query data for custom workflows and dashboards, and
    bolster your security operations


    **Note for Vanta Gov (FedRAMP) customers:** Select `Vanta Gov (FedRAMP)`
    from the server dropdown to issue requests against
    `https://api.vanta-gov.com`. The OAuth token URL shown below defaults to the
    commercial host — replace it with `https://api.vanta-gov.com/oauth/token`.
  termsOfService: https://www.vanta.com/terms
  license:
    name: UNLICENSED
  contact:
    name: API Support
    url: https://help.vanta.com/
    email: support@vanta.com
servers:
  - url: https://api.vanta.com/v1
    description: Vanta (Commercial)
  - url: https://api.vanta-gov.com/v1
    description: Vanta Gov (FedRAMP)
security: []
paths:
  /customer-trust/tag-categories/{tagCategoryId}:
    get:
      tags:
        - Customer Trust
      summary: Get tags for category
      description: Retrieve a tag category and its associated tags by category ID.
      operationId: GetTagsForCategory
      parameters:
        - in: path
          name: tagCategoryId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagCategoryWithTags'
              examples:
                Example 1:
                  value:
                    category:
                      id: 507f1f77bcf86cd799439011
                      displayName: Industry
                    tags:
                      - id: 507f1f77bcf86cd799439013
                        category: 507f1f77bcf86cd799439011
                        displayName: Healthcare
                      - id: 507f1f77bcf86cd799439014
                        category: 507f1f77bcf86cd799439011
                        displayName: Finance
      security:
        - bearerAuth: []
components:
  schemas:
    TagCategoryWithTags:
      properties:
        category:
          $ref: '#/components/schemas/UserDefinedTagCategory'
        tags:
          items:
            $ref: '#/components/schemas/UserDefinedTag'
          type: array
      required:
        - category
        - tags
      type: object
      additionalProperties: false
    UserDefinedTagCategory:
      properties:
        id:
          type: string
        displayName:
          type: string
      required:
        - id
        - displayName
      type: object
      additionalProperties: false
    UserDefinedTag:
      properties:
        id:
          type: string
        category:
          type: string
        displayName:
          type: string
      required:
        - id
        - category
        - displayName
      type: object
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````