Perplexity
Perplexity ↗ is an AI powered answer engine.
Endpoint
Section titled “Endpoint”https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/perplexity-ai
Prerequisites
Section titled “Prerequisites”When making requests to Perplexity, ensure you have the following:
- Your AI Gateway Account ID.
- Your AI Gateway gateway name.
- An active Perplexity API token.
- The name of the Perplexity model you want to use.
Examples
Section titled “Examples”curl https://gateway.ai.cloudflare.com/v1/{account_id}/{gateway_id}/perplexity-ai/chat/completions \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --header 'Authorization: Bearer {perplexity_token}' \ --data '{ "model": "mistral-7b-instruct", "messages": [ { "role": "user", "content": "What is Cloudflare?" } ] }'
Use Perplexity through OpenAI SDK with JavaScript
Section titled “Use Perplexity through OpenAI SDK with JavaScript”Perplexity does not have their own SDK, but they have compatibility with the OpenAI SDK. You can use the OpenAI SDK to make a Perplexity call through AI Gateway as follows:
import OpenAI from "openai";
const apiKey = env.PERPLEXITY_API_KEY;const accountId = "{account_id}";const gatewayId = "{gateway_id}";const baseURL = `https://gateway.ai.cloudflare.com/v1/${accountId}/${gatewayId}/perplexity-ai`;
const perplexity = new OpenAI({ apiKey, baseURL,});
const model = "mistral-7b-instruct";const messages = [{ role: "user", content: "What is Cloudflare?" }];const maxTokens = 20;
const chatCompletion = await perplexity.chat.completions.create({ model, messages, max_tokens: maxTokens,});
Was this helpful?
- Resources
- API
- New to Cloudflare?
- Products
- Sponsorships
- Open Source
- Support
- Help Center
- System Status
- Compliance
- GDPR
- Company
- cloudflare.com
- Our team
- Careers
- 2025 Cloudflare, Inc.
- Privacy Policy
- Terms of Use
- Report Security Issues
- Trademark