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

# Get profile by ID

> Returns a single team member profile by its unique identifier.



## OpenAPI

````yaml openapi.json get /v/alpha/profiles/{id}
openapi: 3.1.0
info:
  title: Operate API Documentation
  description: 'API for Operate: A CRM designed for sales, built for founders'
  version: Alpha
servers:
  - url: https://api.operate.so
security:
  - apiKey: []
tags:
  - name: Companies
    description: Manage companies and their associated data
  - name: People
    description: Manage people/contacts and their associated data
  - name: Deals
    description: Manage deals and opportunities
  - name: Feedback
    description: Manage customer feedback and feature requests
  - name: Next Steps
    description: Manage action items and next steps
  - name: Profiles
    description: Manage organization profiles (team members)
paths:
  /v/alpha/profiles/{id}:
    get:
      tags:
        - Profiles
      summary: Get profile by ID
      description: Returns a single team member profile by its unique identifier.
      operationId: getVAlphaProfilesById
      parameters:
        - name: id
          in: path
          required: true
          schema:
            format: uuid
            description: The unique identifier (UUID) of the profile
            examples:
              - 550e8400-e29b-41d4-a716-446655440000
            type: string
      responses:
        '200':
          description: Successful response
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Obtain from your Operate dashboard.

````