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

# Get SDK Context

> Resolves an API key to its environment and org context.

Used by the SDK to populate telemetry fields (`environmentId`, `orgId`) without requiring them to be passed explicitly in the config.

**Auth**: API key only — session authentication is not supported on this endpoint.

## Response

<ResponseField name="environmentId" type="string" required />

<ResponseField name="orgId" type="string" required />

<ResponseField name="keyType" type="&#x22;server&#x22; | &#x22;client&#x22;" required />

<RequestExample>
  ```bash theme={null}
  curl https://nest.feather.mupeni.dev/v1/sdk/context \
    -H "Authorization: Bearer <api_key>"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "environmentId": "env_01hx...",
    "orgId": "org_01hx...",
    "keyType": "server"
  }
  ```
</ResponseExample>
