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

# Get Creator by ID



## OpenAPI

````yaml https://app.levanta.io/api/seller/v1/openapi.json get /creators/{id}
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:
  /creators/{id}:
    get:
      tags:
        - Creators
      summary: Get Creator by ID
      operationId: GetCreator
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Get a creator
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  name:
                    type: string
                  email:
                    type: string
                    description: >-
                      Email address. Included if the creator has an active
                      partnership with the seller.
                  bio:
                    type: string
                  partneredBrandIds:
                    type: array
                    items:
                      type: string
                      format: uuid
                required:
                  - id
                  - name
                  - bio
                  - partneredBrandIds
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 401
                  message:
                    type: string
                    enum:
                      - Unauthorized
                required:
                  - status
                  - message
        '404':
          description: Creator Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 404
                  message:
                    type: string
                    enum:
                      - Creator Not Found
                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

````