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

# Get API principal session context

> Returns public read context for the API-key principal, including connected sources and supported CRM object types.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/session-context
openapi: 3.0.0
info:
  title: Tempo API
  description: >-
    The Tempo API gives you programmatic access to Deal Brain over HTTP.


    Authenticate with an API key passed as a Bearer token in the `Authorization`
    header.


    If you are building an AI agent rather than a traditional integration, the
    [MCP server](/integrations/mcp) exposes a richer surface and handles auth
    over OAuth.
  version: '1.0'
  contact: {}
servers:
  - url: https://findtempo.co
    description: Production
security: []
tags: []
paths:
  /api/v1/session-context:
    get:
      tags:
        - Public Read Tools
      summary: Get API principal session context
      description: >-
        Returns public read context for the API-key principal, including
        connected sources and supported CRM object types.
      operationId: PublicReadToolsController_getSessionContext_v1
      parameters: []
      responses:
        '200':
          description: Session context returned.
      security:
        - api-key: []
components:
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: Authorization
      description: API key passed as Bearer token (e.g. "Bearer your-api-key")

````