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

# Get API Configuration

> Get API Configuration using APIKey

Retrieve API configuration values associated with the provided API key.

## headers

<ParamField header="X-API-Key" type="string" required>
  The API key created from [Altude](https://altude.so)
</ParamField>

## Response

<ResponseField name="RpcUrl" type="string">
  RPC endpoint URL used by the API
</ResponseField>

<ResponseField name="FeePayer" type="string">
  Public key of the fee payer account
</ResponseField>

<ResponseField name="Token" type="string">
  JWT token to authorize subsequent API requests
</ResponseField>

<ResponseField name="RpcEnvironment" type="string">
  Solana cluster environment name
</ResponseField>

<ResponseField name="TokenExpiration" type="string">
  ISO-8601 timestamp for when the token expires
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "RpcUrl": "https://cool-cold-ensemble.solana-mainnet.quiknode.pro/",
    "FeePayer": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
    "Token": "eyJhbGciOiJSUzI1NiIsImtpZCI6IjIiLCJ0eXAiOiJKV1QifQ...",
    "RpcEnvironment": "Mainnet",
    "TokenExpiration": "2026-05-13T23:47:13.4542068Z"
  }
  ```
</ResponseExample>
