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

# Get API Key Project

> Identify the project and safe dashboard capabilities associated with an API key.

Use this endpoint before creating dashboard resources when an integration needs to confirm its API-key scope.

The response includes the current project, team ID, and MCP-safe capability flags. API keys are scoped to one project, so no project ID is supplied in the request.


## OpenAPI

````yaml api-reference/openapi.json GET /project
openapi: 3.0.1
info:
  title: Sendrealm API
  description: >-
    API for email, push, audience resources, domains, campaign drafts,
    templates, events, topics, and automations
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.sendrealm.com
security:
  - bearerAuth: []
paths:
  /project:
    get:
      summary: Get API key project
      description: >-
        Return the project associated with the Bearer API key and the safe MCP
        capabilities available for it.
      parameters:
        - $ref: '#/components/parameters/SendrealmProjectId'
      responses:
        '200':
          description: Current project and capabilities
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  data:
                    type: object
                    required:
                      - id
                      - name
                      - team_id
                      - capabilities
                    properties:
                      id:
                        type: string
                        format: uuid
                      name:
                        type: string
                      team_id:
                        type: string
                        format: uuid
                      capabilities:
                        type: object
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  parameters:
    SendrealmProjectId:
      name: X-Sendrealm-Project-Id
      in: header
      required: false
      description: >-
        Select an authorized project for a multi-project or all-project API key.
        Omit it to use the key's default project.
      schema:
        type: string
        format: uuid
  responses:
    Unauthorized:
      description: Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Error:
      type: object
      required:
        - status
        - error
      properties:
        status:
          type: integer
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            details:
              $ref: '#/components/schemas/JsonValue'
            issues:
              type: array
              items:
                $ref: '#/components/schemas/ValidationIssue'
    JsonValue:
      oneOf:
        - type: string
          nullable: true
        - type: number
        - type: boolean
        - type: object
          additionalProperties:
            $ref: '#/components/schemas/JsonValue'
        - type: array
          items:
            $ref: '#/components/schemas/JsonValue'
    ValidationIssue:
      type: object
      required:
        - code
        - path
        - message
      properties:
        code:
          type: string
        path:
          type: string
          nullable: true
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````