| title | Headers |
|---|---|
| description | Header requirements and options for the Portkey API |
Portkey API accepts 4 kinds of headers for your requests:
| Portkey Authentication Header | Required |
For Portkey auth |
| Provider Authentication Headers OR Cloud-Specific Headers | Required |
For provider auth |
| Additional Portkey Headers | Optional |
To pass config, metadata, trace id, cache refresh etc. |
| Custom Headers | Optional |
To forward any other headers directly |
Environment variable: `PORTKEY_API_KEY` ```sh cURL {2} curl https://api.portkey.ai/v1/chat/completions \ -H "x-portkey-api-key: $PORTKEY_API_KEY" \ ``` ```py Python {4} from portkey_ai import Portkey
portkey = Portkey( api_key = "PORTKEY_API_KEY" # defaults to os.environ.get("PORTKEY_API_KEY") )
```js JavaScript {4}
import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY' // defaults to process.env["PORTKEY_API_KEY"]
});
In addition to the Portkey API key, you must provide information about the AI provider you're using. There are 4 ways to do this:
Useful if you do not want to save your API keys to Portkey vault and make direct requests.
Specifies the provider you're using (e.g., `openai`, `anthropic`, `vertex-ai`).List of [Portkey supported providers here](/integrations/llms). Pass the auth details for the specified provider as a `"Bearer $TOKEN"`.
If your provider expects their auth with headers such as `x-api-key` or `api-key`, you can pass the token with the `Authorization` header directly and Portkey will convert it into the provider-specific format.
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: openai" \
-H "Authorization: Bearer $OPENAI_API_KEY" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "openai",
Authorization = "Bearer OPENAI_API_KEY"
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: 'openai',
Authorization: 'Bearer OPENAI_API_KEY'
});The x-portkey-virtual-key / virtual_key / virtualKey parameter is the legacy equivalent and still works for backward compatibility.
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "@openai-prod" # Your AI Provider slug from Model Catalog
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: '@openai-prod' // Your AI Provider slug from Model Catalog
});* Configs can be saved in the Portkey UI and referenced by their ID ([Docs](/product/ai-gateway/configs)) * Configs also enable other optional features like Caching, Load Balancing, Fallback, Retries, and Timeouts.
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-config: openai-config" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
config = "openai-config"
# You can also send raw JSON
# config = {"provider": "openai", "api_key": "OPENAI_API_KEY"}
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
config: 'openai-config'
// You can also send raw JSON
// config: {"provider": "openai", "api_key": "OPENAI_API_KEY"}
});If your provider expects their auth with headers such as `x-api-key` or `api-key`, you can pass the token with the `Authorization` header directly and Portkey will convert it into the provider-specific format.
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-custom-host: http://124.124.124.124/v1" \
-H "x-portkey-provider: openai" \
-H "Authorization: Bearer $TOKEN" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
custom_host = "http://124.124.124.124/v1",
provider = "openai",
Authorization = "Bearer TOKEN"
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
customHost: "http://124.124.124.124/v1",
provider: "openai",
Authorization: "Bearer TOKEN"
});There are additional optional Portkey headers that enable various features and enhancements:
An ID you can pass to refer to one or more requests later on. If not provided, Portkey generates a trace ID automatically for each request. ([Docs](/product/observability/traces))curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "x-portkey-trace-id: test-request" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "@openai-prod",
trace_id = "test-request"
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: "@openai-prod",
traceId: "test-request"
});You can include the special metadata type `_user` to associate requests with specific users. ([Docs](/product/observability/metadata))
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "x-portkey-metadata: {'_user': 'user_id_123', 'foo': 'bar'}" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "@openai-prod",
metadata = {"_user": "user_id_123", "foo": "bar"}"
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: "@openai-prod",
metadata: {"_user": "user_id_123", "foo": "bar"}"
});Expects `true` or `false` See the caching documentation for more information. ([Docs](/product/ai-gateway/cache-simple-and-semantic))
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "x-portkey-cache-force-refresh: true" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "@openai-prod",
cache_force_refresh = True
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: "@openai-prod",
cacheForceRefresh: True
});curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "x-portkey-cache-namespace: any-string" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "@openai-prod",
cache_namespace = "any-string"
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: "@openai-prod",
cacheNamespace: "any-string"
});curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "x-portkey-request-timeout: 3000" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "@openai-prod",
request_timeout = 3000
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: "@openai-prod",
reqiestTimeout: 3000
});curl https://api.portkey.ai/v1/models \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "x-portkey-fetch-integrated-models: true"{
"fetch_integrated_models": true,
"targets": [
{ "virtual_key": "openai-prod" },
{ "virtual_key": "anthropic-prod" }
]
}You can pass any other headers your API expects by directly forwarding them without any processing by Portkey.
This is especially useful if you want to pass send sensitive headers.
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "X-Custom-Header: ...."\
-H "Another-Header: ....."\
-H "x-portkey-forward-headers: ['X-Custom-Header', 'Another-Header']" \from portkey_ai import Portkey
portkey = Portkey(
api_key = "PORTKEY_API_KEY", # defaults to os.environ.get("PORTKEY_API_KEY")
provider = "@openai-prod",
X_Custom_Header = "....",
Another_Header = "....",
# The values in forward_headers list must be the original header names
forward_headers = ['X-Custom-Header', 'Another-Header']
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY', // defaults to process.env["PORTKEY_API_KEY"]
provider: "@openai-prod",
CustomHeader: "....",
AnotherHeader: "....",
forwardHeaders: ['CustomHeader', 'AnotherHeader']
});With the Python SDK, you need to transform your headers to Snake Case and then include them while initializing the Portkey client.
Example: If you have a header of the format X-My-Custom-Header, it should be sent as X_My_Custom_Header in the SDK.
Note: When using forward_headers, ensure the header names in the list are in their original format (e.g., X-My-Custom-Header), not the snake case format.
With the JS SDK, you need to transform your headers to Camel Case and then include them while initializing the Portkey client.
Example: If you have a header of the format X-My-Custom-Header, it should be sent as xMyCustomHeader in the SDK
x-portkey-sensitive-headers only controls log masking. It does not forward headers to the upstream provider.
If you need both behaviors, use:
x-portkey-forward-headersto forward the header upstreamx-portkey-sensitive-headersto mask that header's value in Portkey logs
For organisation-wide defaults, set ORGANISATION_HEADERS_TO_MASK (comma-separated header names) in your gateway environment to mask matching headers across requests.
curl https://api.portkey.ai/v1/chat/completions \
-H "x-portkey-api-key: $PORTKEY_API_KEY" \
-H "x-portkey-provider: @openai-prod" \
-H "X-Internal-Token: supersecret" \
-H "x-portkey-sensitive-headers: X-Internal-Token"from portkey_ai import Portkey
portkey = Portkey(
api_key="PORTKEY_API_KEY",
provider="@openai-prod",
sensitive_headers=["X-Internal-Token"]
)import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: 'PORTKEY_API_KEY',
provider: '@openai-prod',
sensitiveHeaders: ['X-Internal-Token']
});Pass more configuration headers for Azure OpenAI, Google Vertex AI, or AWS Bedrock
x-portkey-azure-resource-name,x-portkey-azure-deployment-id,x-portkey-azure-api-version,Authorization,x-portkey-azure-model-name
x-portkey-vertex-project-id,x-portkey-vertex-region,X-Vertex-AI-LLM-Request-Type
x-portkey-aws-session-token,x-portkey-aws-secret-access-key,x-portkey-aws-region,x-portkey-aws-session-token
The following is a comprehensive list of headers that can be used when initializing the Portkey client.
Portkey adheres to language-specific naming conventions:
- camelCase for JavaScript/Node.js parameters
- snake_case for Python parameters
- hyphenated-keys for HTTP headers
| Parameter | Type | Key |
|---|---|---|
| API Key Your Portkey account's API Key. | stringrequired | api_key |
Virtual Key (Legacy — use provider with @provider-slug instead) |
string | virtual_key |
| Config The slug or config object to use | stringobject | config |
| Provider The AI provider to use for your calls. (supported providers). | string | provider |
| Base URL You can edit the URL of the gateway to use. Needed if you're self-hosting the AI gateway | string | base_url |
| Trace ID An ID you can pass to refer to 1 or more requests later on. Generated automatically for every request, if not sent. | string | trace_id |
Metadata Any metadata to attach to the requests. These can be filtered later on in the analytics and log dashboards Can contain _prompt, _user, _organisation, or _environment that are special metadata types in Portkey. You can also send any other keys as part of this object. |
object | metadata |
| Cache Force Refresh Force refresh the cache for your request by making a new call and storing that value. | boolean | cache_force_refresh |
| Cache Namespace Partition your cache based on custom strings, ignoring metadata and other headers. | string | cache_namespace |
| Custom Host Route to locally or privately hosted model by configuring the API URL with custom host | string | custom_host |
| Forward Headers Forward sensitive headers directly to your model's API without any processing from Portkey. | array of string | forward_headers |
| Azure OpenAI Headers Configuration headers for Azure OpenAI that you can send separately | string | azure_resource_name azure_deployment_id azure_api_version azure_model_name |
| Google Vertex AI Headers Configuration headers for Vertex AI that you can send separately | string | vertex_project_id vertex_region |
| AWS Bedrock Headers Configuration headers for Bedrock that you can send separately | string | aws_access_key_id aws_secret_access_key aws_region aws_session_token |
You can send these headers in multiple ways:
```sh REST API curl https://api.portkey.ai/v1/chat/completions \ -H "Content-Type: application/json" \ -H "x-portkey-api-key: PORTKEY_API_KEY" \ -H "x-portkey-provider: @openai-prod" \ -H "x-portkey-trace-id: your_trace_id" \ -H "x-portkey-metadata: {\"_user\": \"user_12345\"}" \ -d '{ "model": "gpt-4o", "messages": [{"role": "user", "content": "Hello!"}] }' ``` ```python Portkey SDK # Python - At initialization from portkey_ai import Portkeyportkey = Portkey( api_key="PORTKEY_API_KEY", provider="@openai-prod", config="CONFIG_ID" )
completion = portkey.with_options( trace_id="your_trace_id", metadata={"_user": "user_12345"} ).chat.completions.create( messages=[{"role": "user", "content": "Hello!"}], model="gpt-4o" )
```js Node.js SDK
// Node.js - At initialization
import Portkey from 'portkey-ai';
const portkey = new Portkey({
apiKey: "PORTKEY_API_KEY",
provider: "@openai-prod",
config: "CONFIG_ID"
});
// Node.js - At runtime
const chatCompletion = await portkey.chat.completions.create(
{
messages: [{ role: 'user', content: 'Hello!' }],
model: 'gpt-4o'
},
{
traceId: "your_trace_id",
metadata: {"_user": "user_12345"}
}
);
# Python
from openai import OpenAI
from portkey_ai import createHeaders
# At initialization
client = OpenAI(
api_key="OPENAI_API_KEY",
base_url="https://api.portkey.ai/v1",
default_headers=createHeaders({
"apiKey": "PORTKEY_API_KEY",
"provider": "@openai-prod"
})
)
# At runtime
response = client.with_options(
extra_headers={"x-portkey-trace-id": "your_trace_id",
"x-portkey-metadata": '{"_user": "user_12345"}'}
).chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}]
)// Node.js
import OpenAI from "openai";
import { createHeaders } from "portkey-ai";
// At initialization
const client = new OpenAI({
apiKey: "OPENAI_API_KEY",
baseURL: "https://api.portkey.ai/v1",
defaultHeaders: createHeaders({
apiKey: "PORTKEY_API_KEY",
provider: "@openai-prod"
})
});
// At runtime
const response = await client.chat.completions.create(
{
model: "gpt-4o",
messages: [{ role: "user", content: "Hello!" }]
},
{
headers: {
"x-portkey-trace-id": "your_trace_id",
"x-portkey-metadata": JSON.stringify({"_user": "user_12345"})
}
}
);