Documentation Index
Fetch the complete documentation index at: https://docs.helicone.ai/llms.txt
Use this file to discover all available pages before exploring further.
This integration method is maintained but no longer actively developed. For the best experience and latest features, use our new AI Gateway with unified API access to 100+ models.
Proxy Integration
Create an account + Generate an API Key
Log into helicone or create an account. Once you have an account, you
can generate an API key. Create Google Generative AI API Key
Visit the Google Generative AI API Key page.
Follow the instructions to create a new API key. Make sure to save the key as you will need it for the next steps. Set API keys as environment variables
export HELICONE_API_KEY=<your Helicone API key>
export GOOGLE_GENERATIVE_API_KEY=<your Google Generative AI API key>
Send a request using cURL
Use the following cURL command to send a request to the Google Generative AI API through the Helicone proxy:curl --request POST \
--url "https://gateway.helicone.ai/v1beta/models/$MODEL_NAME:generateContent?key=$GOOGLE_GENERATIVE_API_KEY" \
--header "Content-Type: application/json" \
--header "Helicone-Auth: Bearer $HELICONE_API_KEY" \
--header "Helicone-Target-URL: https://generativelanguage.googleapis.com" \
--data '{
"contents": [{
"parts":[{
"text": "Write a story about a magic backpack."
}]
}]
}'