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

# Get CORS for tiles

> Gets information about registered domains for CORS tiles



## OpenAPI

````yaml get /teams/tiles/cors
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /teams/tiles/cors:
    get:
      tags:
        - Teams
      summary: Get CORS for tiles
      description: Gets information about registered domains for CORS tiles
      operationId: GetCORSTiles
      responses:
        '200':
          description: The registered domains for tiles usage
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Ormeo_WebAPI_Models_Teams_TeamCORS_Dto'
components:
  schemas:
    Ormeo_WebAPI_Models_Teams_TeamCORS_Dto:
      type: object
      properties:
        teamId:
          type: integer
          format: int32
        corsType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_TeamCORSType'
        domain:
          type: string
          nullable: true
        userId:
          type: integer
          format: int32
          nullable: true
        lastUpdatedAtUtc:
          type: string
          format: date-time
      additionalProperties: false
    Ormeo_Library_Entities_TeamCORSType:
      enum:
        - tiles
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````