> ## 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 Trust Center

> Gets a Trust Center by slug ID.



## OpenAPI

````yaml /reference/manage-vanta.json get /trust-centers/{slugId}
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:
  /trust-centers/{slugId}:
    get:
      tags:
        - Trust Centers
      summary: Get Trust Center
      description: Gets a Trust Center by slug ID.
      operationId: GetTrustCenter
      parameters:
        - in: path
          name: slugId
          required: true
          schema:
            type: string
          example: a2f7e1b9d0c3f4e5a6c7b8d9
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrustCenter'
              examples:
                Example 1:
                  value:
                    id: a2f7e1b9d0c3f4e5a6c7b8d9
                    title: Trust Center
                    companyDescription: Company description
                    privacyPolicy: Privacy policy
                    awsMarketplaceListing: https://aws.amazon.com/marketplace/pp/example
                    customDomain: trustcenter.com
                    isPublic: true
                    bannerSetting:
                      setting: GRADIENT
                      startColor: '#000000'
                      endColor: '#FFFFFF'
                    customTheme:
                      primary: '#000000'
                      secondary: '#FFFFFF'
                    contactEmail: security@example.com
                    customHeading: Welcome to our Trust Center
                    creationDate: '2020-01-01T00:00:00.000Z'
                    updatedDate: '2020-01-01T00:00:00.000Z'
      security:
        - bearerAuth: []
components:
  schemas:
    TrustCenter:
      properties:
        id:
          type: string
          description: Unique identifier for the Trust Center.
        title:
          type: string
          nullable: true
          description: Custom title set for the Trust Center.
        companyDescription:
          type: string
          nullable: true
          description: Company description displayed in the Trust Center header.
        privacyPolicy:
          type: string
          nullable: true
          description: URL of the Trust Center company's privacy policy.
        awsMarketplaceListing:
          type: string
          nullable: true
          description: URL of the Trust Center company's AWS Marketplace listing.
        customDomain:
          type: string
          nullable: true
          description: >-
            Custom domain that the Trust Center can be found at, e.g.
            trust.vanta.com.
        isPublic:
          type: boolean
          description: Whether the Trust Center is public.
        bannerSetting:
          properties:
            endColor:
              type: string
              nullable: true
              description: End color of the banner. Only applies if setting is GRADIENT.
            startColor:
              type: string
              nullable: true
              description: Start color of the banner. Only applies if setting is GRADIENT.
            setting:
              allOf:
                - $ref: '#/components/schemas/BannerSetting'
              nullable: true
              description: Banner setting option.
          required:
            - endColor
            - startColor
            - setting
          type: object
          description: Information about the Trust Center's banner.
        customTheme:
          properties:
            secondary:
              type: string
              nullable: true
              description: Secondary color selected for the theme.
            primary:
              type: string
              nullable: true
              description: Primary color selected for the theme.
          required:
            - secondary
            - primary
          type: object
          description: Custom theme colors chosen for the Trust Center.
        contactEmail:
          type: string
          nullable: true
          description: Contact email displayed on the Trust Center.
        customHeading:
          type: string
          nullable: true
          description: Custom heading displayed on the Trust Center.
        creationDate:
          type: string
          format: date-time
          description: Date the Trust Center was created.
        updatedDate:
          type: string
          format: date-time
          description: Date the Trust Center was last updated.
      required:
        - id
        - title
        - companyDescription
        - privacyPolicy
        - awsMarketplaceListing
        - customDomain
        - isPublic
        - bannerSetting
        - customTheme
        - contactEmail
        - customHeading
        - creationDate
        - updatedDate
      type: object
      additionalProperties: false
    BannerSetting:
      description: >-
        Possible banner settings for the Trust Center.

        - CUSTOM_IMAGE: Banner is a custom uploaded image.

        - GRADIENT: Banner is a gradient between two colors.

        - MINIMAL: No banner.

        - VANTA: Legacy Vanta-themed banner. No longer selectable as a banner
        style.
      enum:
        - CUSTOM_IMAGE
        - GRADIENT
        - MINIMAL
        - VANTA
      type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````