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

# Me

> Fetches the projects and organizations associated with the API key.



## OpenAPI

````yaml /api-v2-reference/openapi.yml get /me
openapi: 3.1.0
info:
  title: Formbricks API
  description: Manage Formbricks resources programmatically.
  version: 2.0.0
servers:
  - url: https://app.formbricks.com/api/v2
    description: Formbricks Cloud
security:
  - apiKeyAuth: []
tags:
  - name: Health
    description: Operations for checking critical application dependencies health status.
  - name: Roles
    description: Operations for managing roles.
  - name: Me
    description: Operations for managing your API key.
  - name: Management API - Responses
    description: Operations for managing responses.
  - name: Management API - Contacts
    description: Operations for managing contacts.
  - name: Management API - Contact Attributes
    description: Operations for managing contact attributes.
  - name: Management API - Contact Attribute Keys
    description: Operations for managing contact attribute keys.
  - name: Management API - Surveys
    description: Operations for managing surveys.
  - name: Management API - Surveys - Contact Links
    description: Operations for generating personalized survey links for contacts.
  - name: Management API - Webhooks
    description: Operations for managing webhooks.
  - name: Organizations API - Teams
    description: Operations for managing teams.
  - name: Organizations API - Project Teams
    description: Operations for managing project teams.
  - name: Organizations API - Users
    description: Operations for managing users.
paths:
  /me:
    get:
      tags:
        - Me
      summary: Me
      description: Fetches the projects and organizations associated with the API key.
      operationId: me
      responses:
        '200':
          description: API key information retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  organizationId:
                    type: string
                  organizationAccess:
                    type: object
                    properties:
                      accessControl:
                        type: object
                        properties:
                          read:
                            type: boolean
                          write:
                            type: boolean
                        required:
                          - read
                          - write
                        additionalProperties: false
                    required:
                      - accessControl
                  environments:
                    type: array
                    items:
                      type: object
                      properties:
                        environmentId:
                          type: string
                        environmentType:
                          type: string
                          enum:
                            - production
                            - development
                        permission:
                          type: string
                          enum:
                            - read
                            - write
                            - manage
                        projectId:
                          type: string
                        projectName:
                          type: string
                      required:
                        - environmentId
                        - environmentType
                        - permission
                        - projectId
                        - projectName
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Use your Formbricks x-api-key to authenticate.

````