#Perplexity Pro Account Setup?

1 messages · Page 1 of 1 (latest)

analog delta
#

Is it Possible to Setup OpenClaw with a Perplexity Pro Account, because it has Models like Claude Opus or ChatGBT 5.2 to use. Maybe via OAuth or smth like that

dawn crownBOT
#

No — Perplexity Pro (the consumer subscription) can’t currently be used as an OpenClaw “model provider” to run agents on the Claude/GPT models you see in the Perplexity app, and there’s no Perplexity Pro OAuth login flow in OpenClaw for that.

What is supported:

If your goal is “use Claude/OpenAI models inside OpenClaw”, the supported path is still:

  • use the provider’s API key / supported OAuth (where available), or
  • use an aggregator like OpenRouter (credits-based) if you want one key for many models.

Relevant FAQ background on subscriptions vs API auth: https://docs.openclaw.ai/start/faq

analog delta
dawn crownBOT
#

It’s not just “we didn’t add it yet” — for Perplexity Pro (consumer subscription) there usually isn’t a clean/official way to use that login as a developer/API credential that lets third‑party apps call “Claude Opus / GPT …” through Perplexity.

Why it’s hard / likely not implementable properly

To add a provider to OpenClaw, you need a stable, documented API + an auth method that’s meant for programmatic use (API key or official OAuth for developers).

With Perplexity Pro, the only “implementation” options would typically be:

  1. Reverse-engineer the web/app endpoints and replay them with your session cookies/tokens, or
  2. Browser automation (log in, keep a live session, scrape responses).

Both are brittle (break often), risky (session cookies), and can violate ToS. So even if it’s technically possible, it’s not a good/maintainable integration for OpenClaw.

What is implementable today

Perplexity does have a proper API product, and OpenClaw supports it specifically for web_search via Sonar:
https://docs.openclaw.ai/perplexity

That’s separate from “use my Pro subscription to access other vendors’ flagship models”.

#

If you want this supported

It becomes realistically implementable if Perplexity ships an official developer API/OAuth that grants access to those models under terms that allow third-party automation. If that exists/appears, it’d be reasonable to add as a provider.

If you want, open a feature request with links to Perplexity’s official API/OAuth docs (if any): https://github.com/openclaw/openclaw/issues

dawn crownBOT
#

Yep — OpenClaw can run on OpenRouter models, including the ones OpenRouter labels as :free.

A couple important gotchas:

  • You still need an OpenRouter API key (OPENROUTER_API_KEY). “Free” usually means $0/model usage, not “no API key needed”.
  • The free models are often rate-limited / can be a bit flaky for heavy tool-calling agent workflows, but they’re great for testing.

Setup docs + config format:

Config example (use the exact model id from OpenRouter, optionally with :free if that’s how they list it):

{
  env: { OPENROUTER_API_KEY: "sk-or-..." },
  agents: {
#
    defaults: {
      model: { primary: "openrouter/<provider>/<model>:free" },
    },
  },
}

After that, openclaw models status is the quickest way to confirm it’s actually authenticated + usable.

analog delta