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

# Retrieve current identity

> Returns the identity of the authenticated caller — the user ID, current teamspace, and all teamspace memberships that the API key or JWT resolves to.




## OpenAPI

````yaml get /identity
openapi: 3.0.3
info:
  version: 0.1.1
  title: Datagrid API
  description: Datagrid API
servers:
  - url: https://api.datagrid.com/v1
security:
  - BearerAuth: []
paths:
  /identity:
    get:
      tags:
        - Identity
      summary: Retrieve current identity
      description: >
        Returns the identity of the authenticated caller — the user ID, current
        teamspace, and all teamspace memberships that the API key or JWT
        resolves to.
      operationId: RetrieveMe
      responses:
        '200':
          description: Caller identity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Identity'
        '429':
          description: >-
            Rate limit exceeded. The request has been throttled because the rate
            limit for this endpoint has been reached. Check the `Retry-After`
            response header and retry after the specified number of seconds.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RateLimitError'
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Datagrid from 'datagrid-ai';

            const client = new Datagrid({
              apiKey: process.env['DATAGRID_API_KEY'], // This is the default and can be omitted
            });

            const identity = await client.identity.retrieve();

            console.log(identity.current_teamspace_id);
        - lang: Python
          source: |-
            import os
            from datagrid_ai import Datagrid

            client = Datagrid(
                api_key=os.environ.get("DATAGRID_API_KEY"),  # This is the default and can be omitted
            )
            identity = client.identity.retrieve()
            print(identity.current_teamspace_id)
components:
  schemas:
    Identity:
      type: object
      required:
        - object
        - user_id
        - current_teamspace_id
        - teamspaces
      properties:
        object:
          type: string
          enum:
            - identity
        user_id:
          type: string
          description: The ID of the authenticated user.
        current_teamspace_id:
          type: string
          description: |
            The teamspace ID this request is scoped to. Resolution depends on
            the caller type:

              - **Org-scoped API keys** (default): always the teamspace the
                key was minted in. The `Datagrid-Teamspace` header is
                ignored.
              - **Account-scoped API keys** (`scopeLevel: "account"`): the
                teamspace selected by the `Datagrid-Teamspace` header, when
                that teamspace lives under the same account as the key.
                Falls back to the key's home teamspace when the header is
                absent.
              - **JWT callers**: the `Datagrid-Teamspace` header when
                present (and the user is a member), otherwise the user's
                default teamspace.
        teamspaces:
          type: array
          description: All teamspaces the authenticated user is a member of.
          items:
            $ref: '#/components/schemas/IdentityTeamspace'
    RateLimitError:
      type: object
      description: >-
        Returned when the rate limit is exceeded. Rate limits are enforced per
        teamspace, endpoint path, and HTTP method over a 60-second sliding
        window. Each endpoint may have its own limit — check the
        X-RateLimit-Limit response header for the effective value.
      required:
        - error
        - message
        - retryable
        - status_code
      properties:
        status_code:
          type: integer
          description: The HTTP status code (429).
        statusCode:
          type: integer
          deprecated: true
          description: Deprecated. Use status_code instead.
        error:
          type: string
          enum:
            - rate_limit_exceeded
          description: The error code identifying this as a rate limit error.
        message:
          type: string
          description: A human-readable error message.
        mitigation:
          type: string
          description: Suggested action to resolve the error.
        retryable:
          type: boolean
          description: Whether the request can be retried after a delay.
        details:
          type: object
          properties:
            reason:
              type: string
              description: A detailed explanation of why the rate limit was exceeded.
    IdentityTeamspace:
      type: object
      required:
        - teamspace_id
        - permissions
      properties:
        teamspace_id:
          type: string
          description: The ID of the teamspace.
        permissions:
          $ref: '#/components/schemas/TeamspaceUserPermissions'
          description: The permissions the user holds in this teamspace.
    TeamspaceUserPermissions:
      type: object
      description: Represents a permission assigned to a user
      required:
        - role
      properties:
        role:
          type: string
          enum:
            - owner
            - admin
            - member
            - collaborator
            - agents-only
            - agent-specific
          description: >
            The role assigned to the user. Available roles:

            - **owner**: Creator of the teamspace. Full control over the
            teamspace. Can manage all users, settings, and resources.

            - **admin**: Full control over the teamspace. Can manage all users,
            settings, and resources.

            - **member**: Standard member access. Can view and interact with
            teamspace resources. Can invite other members.

            - **collaborator**: Read-only access with ability to comment and
            provide feedback.

            - **agents-only**: Access limited to AI agent interactions within
            the teamspace.

            - **agent-specific**: Limited access on teamspace level, can only
            access agents that are assigned to the teamspace.
        agent_ids:
          type: array
          nullable: true
          items:
            type: string
          description: >-
            The agent IDs that the user has access to, if the role is
            agent-specific.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````