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

# Lookup Creator Connections Creators by Associates Tags

> Look up Creator Connections creators by their Amazon associates tags (e.g. levanta-20). Returns Levanta creator team IDs and metadata for the matched associates tags.



## OpenAPI

````yaml https://app.levanta.io/api/seller/v1/openapi.json get /creator-connections/creators/lookup
openapi: 3.1.0
info:
  version: 1.0.0
  title: Levanta Seller API
  description: >-
    Authorize all requests with an API key in the Authorization header as the
    second token. E.g. Authorization -> "Bearer {api_key}".
servers:
  - url: https://app.levanta.io/api/seller/v1
security: []
externalDocs:
  url: https://app.levanta.io/seller/api-docs
paths:
  /creator-connections/creators/lookup:
    get:
      tags:
        - Creator Connections
      summary: Lookup Creator Connections Creators by Associates Tags
      description: >-
        Look up Creator Connections creators by their Amazon associates tags
        (e.g. levanta-20). Returns Levanta creator team IDs and metadata for the
        matched associates tags.
      operationId: SellerLookupCreatorConnectionsCreatorByCreatorConnectionsIds
      parameters:
        - schema:
            type: string
            description: >-
              Comma-delimited list of strings representing an array. Example:
              1,2,3 equivalent to [1,2,3]
          required: true
          description: >-
            Comma-delimited list of strings representing an array. Example:
            1,2,3 equivalent to [1,2,3]
          name: creatorConnectionsIds
          in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  creators:
                    type: array
                    items:
                      type: object
                      properties:
                        creatorTeamId:
                          type: string
                          format: uuid
                        name:
                          type: string
                        creatorConnectionsId:
                          type: string
                      required:
                        - creatorTeamId
                        - name
                        - creatorConnectionsId
                required:
                  - creators
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 401
                  message:
                    type: string
                    enum:
                      - Unauthorized
                required:
                  - status
                  - message
        '422':
          description: Input Validation Failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 422
                  message:
                    type: string
                    enum:
                      - Input Validation Failed
                required:
                  - status
                  - message
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer

````