Google Vertex AI
Google Vertex AI ↗ enables developers to easily build and deploy enterprise ready generative AI experiences.
Below is a quick guide on how to set your Google Cloud Account:
-
Google Cloud Platform (GCP) Account
- Sign up for a GCP account ↗. New users may be eligible for credits (valid for 90 days).
-
Enable the Vertex AI API
- Go to Enable Vertex AI API ↗ and activate the API for your project.
-
Apply for access to desired models.
https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/google-vertex-aiWhen making requests to Google Vertex AI, you will need:
- AI Gateway account tag
- AI Gateway gateway name
- Google Vertex AI credentials (service account JSON or access token)
- Google Vertex AI Project Name
- Google Vertex AI Region (for example,
us-central1) - Google Vertex AI model
Your new base URL will use the data above in this structure: https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/google-vertex-ai/v1/projects/{project_name}/locations/{region}.
Then you can append the endpoint you want to hit, for example: /publishers/google/models/{model}:{generative_ai_rest_resource}
So your final URL will come together as: https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/google-vertex-ai/v1/projects/{project_name}/locations/{region}/publishers/google/models/gemini-2.5-flash:generateContent
Authenticating with Vertex AI normally requires generating short-term credentials using the Google Cloud SDKs ↗ with a complicated setup, but AI Gateway simplifies this for you with multiple options.
| Method | cf-aig-authorization header | Authorization header | Region handling |
|---|---|---|---|
| BYOK (Recommended) | Bearer {CF_AIG_TOKEN} | Not needed | Select in dashboard dropdown |
| Service account JSON in header | Bearer {CF_AIG_TOKEN} | Base64-encoded JSON with region key | Include region key in JSON |
| Direct access token | Bearer {CF_AIG_TOKEN} | Bearer {gcloud_access_token} | Included in URL path |
The recommended approach is to store your Google service account credentials using AI Gateway's Bring Your Own Keys (BYOK) feature. This keeps your credentials secure and out of your application code.
- Create a service account key ↗ in the Google Cloud Console. Ensure that the service account has the required permissions for the Vertex AI endpoints and models you plan to use.
- In the Cloudflare dashboard, go to AI > AI Gateway > your gateway > Provider Keys.
- Select Add API Key and choose Google Vertex AI as the provider.
- Paste your service account JSON and select your region from the dropdown. AI Gateway automatically applies this selected region to your stored credentials, so you do not need to manually add a
regionfield to the JSON. - Select Save.
With BYOK configured, you only need to include the cf-aig-authorization header in your requests. AI Gateway handles the Vertex AI authentication automatically.
curl "https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/google-vertex-ai/v1/projects/{project_name}/locations/{region}/publishers/google/models/gemini-2.5-flash:generateContent" \ -H 'cf-aig-authorization: Bearer {CF_AIG_TOKEN}' \ -H 'Content-Type: application/json' \ -d '{ "contents": [ { "role": "user", "parts": [ { "text": "Tell me more about Cloudflare" } ] } ] }'You can pass a Google service account JSON directly in the Authorization header on each request with a base64-encoded version of the JSON. This option is useful for testing or when you cannot use BYOK.
Create a service account key ↗ in the Google Cloud Console. Ensure that the service account has the required permissions for the Vertex AI endpoints and models you plan to use.
AI Gateway uses your service account JSON to generate short-term access tokens which are cached and used for consecutive requests, and are automatically refreshed when they expire.
{ "type": "service_account", "project_id": "your-project-id", "private_key_id": "your-private-key-id", "private_key": "-----BEGIN PRIVATE KEY-----\nYOUR_PRIVATE_KEY\n-----END PRIVATE KEY-----\n", "client_email": "your-service-account@your-project.iam.gserviceaccount.com", "client_id": "your-client-id", "auth_uri": "https://accounts.google.com/o/oauth2/auth", "token_uri": "https://oauth2.googleapis.com/token", "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs", "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/your-service-account%40your-project.iam.gserviceaccount.com", "region": "us-central1"}If you are already using the Google Cloud SDKs and generating a short-term access token (for example, with gcloud auth print-access-token), you can directly pass this as a Bearer token in the Authorization header of the request.
curl "https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/google-vertex-ai/v1/projects/{project_name}/locations/{region}/publishers/google/models/gemini-2.5-flash:generateContent" \ -H 'cf-aig-authorization: Bearer {CF_AIG_TOKEN}' \ -H "Authorization: Bearer ya29.c.b0Aaekm1K..." \ -H 'Content-Type: application/json' \ -d '{ "contents": [ { "role": "user", "parts": [ { "text": "Tell me more about Cloudflare" } ] } ] }'AI Gateway provides a Unified API that works across providers. For Google Vertex AI, you can use the standard chat completions format. Note that the model field includes the provider prefix, so your model string will look like google-vertex-ai/google/gemini-2.5-pro.
https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/compat/chat/completionsWith BYOK configured, you only need to include the cf-aig-authorization header:
curl "https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/compat/chat/completions" \ -H 'cf-aig-authorization: Bearer {CF_AIG_TOKEN}' \ -H 'Content-Type: application/json' \ -d '{ "model": "google-vertex-ai/google/gemini-2.5-pro", "messages": [ { "role": "user", "content": "What is Cloudflare?" } ] }'If not using BYOK, pass the base64-encoded service account JSON (with region key included) as the API key:
import OpenAI from "openai";
// Service account JSON must include "region" key when not using BYOKconst serviceAccountJson = JSON.stringify({ type: "service_account", project_id: "your-project-id", // ... other fields from your downloaded JSON region: "us-central1", // Required: add this to your service account JSON});
const client = new OpenAI({ apiKey: Buffer.from(serviceAccountJson).toString("base64"), baseURL: "https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/compat", defaultHeaders: { "cf-aig-authorization": `Bearer {cf_aig_token}`, },});
const response = await client.chat.completions.create({ model: "google-vertex-ai/google/gemini-2.5-pro", messages: [ { role: "user", content: "What is Cloudflare?", }, ],});
console.log(response.choices[0].message.content);# First, base64-encode your service account JSON (must include "region" key)SERVICE_ACCOUNT_BASE64=$(base64 < service-account.json | tr -d '\n')
curl "https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/compat/chat/completions" \ -H 'cf-aig-authorization: Bearer {CF_AIG_TOKEN}' \ -H "Authorization: Bearer $SERVICE_ACCOUNT_BASE64" \ -H 'Content-Type: application/json' \ -d '{ "model": "google-vertex-ai/google/gemini-2.5-pro", "messages": [ { "role": "user", "content": "What is Cloudflare?" } ] }'You can also use the provider-specific endpoint to access the full Vertex AI API.
With BYOK configured, you only need the cf-aig-authorization header:
curl "https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/google-vertex-ai/v1/projects/{project_name}/locations/{region}/publishers/google/models/gemini-2.5-flash:generateContent" \ -H 'cf-aig-authorization: Bearer {CF_AIG_TOKEN}' \ -H 'Content-Type: application/json' \ -d '{ "contents": [ { "role": "user", "parts": [ { "text": "Tell me more about Cloudflare" } ] } ] }'If not using BYOK, pass the base64-encoded service account JSON (with region key included) in the Authorization header:
# First, base64-encode your service account JSON (must include "region" key) as a single lineSERVICE_ACCOUNT_BASE64=$(base64 < service-account.json | tr -d '\n')
curl "https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/google-vertex-ai/v1/projects/{project_name}/locations/{region}/publishers/google/models/gemini-2.5-flash:generateContent" \ -H 'cf-aig-authorization: Bearer {CF_AIG_TOKEN}' \ -H "Authorization: Bearer $SERVICE_ACCOUNT_BASE64" \ -H 'Content-Type: application/json' \ -d '{ "contents": [ { "role": "user", "parts": [ { "text": "Tell me more about Cloudflare" } ] } ] }'For general AI Gateway troubleshooting, refer to Troubleshooting.
If you receive a CREDENTIALS_MISSING or UNAUTHENTICATED error from Google, check the following Vertex AI-specific issues:
-
Check your region: Use a specific regional endpoint (like
us-central1) in your URL, notglobal. Theglobalendpoint has limited model support. -
Verify BYOK configuration: If using BYOK, confirm in the dashboard that:
- Your service account JSON was saved correctly
- A region was selected from the dropdown
-
Check service account permissions: Ensure your service account has the
Vertex AI Userrole or equivalent permissions in Google Cloud. -
Verify the region key (non-BYOK only): If passing service account JSON directly in the
Authorizationheader, make sure the JSON includes theregionkey.