OpenSEO is an SEO tool for the people (non-seo professionals). If tools like Semrush or Ahrefs are too expensive or bloated, OpenSEO is a pay by usage alternative that you actually control.
- Why Use This
- Main SEO Workflows
- Roadmap
- Community
- Pricing / Costs (Free + API costs)
- Self Hosting (Deploy on Cloudflare) [5-10 minutes]
- Local Development
- Contributing
- SEO API Cost Reference
- Open source and self-hostable.
- No subscriptions.
- Focused workflows instead of a giant, complex SEO suite.
- AI Native - Use your own tools like Claude Code / Cowork for more powerful AI features than what other platforms provide.
- Keyword research
- Find topics worth targeting, estimate demand, and prioritize what to write next.
- Domain insights
- Understand where your domain is gaining or losing visibility so you can focus on the pages that move revenue.
- Site Audits
- Catch technical issues early so your site is easier for search engines to crawl and rank.
Top priorities:
- Rank tracking
- AI content workflows
If something important is missing, please join the Discord or email me at ben@everyapp.dev and request it.
Join discord to chat: Discord
Follow along for updates:
OpenSEO is totally free to use. It works by using DataForSEO's APIs, which is a paid third-party service unaffiliated with OpenSEO.
There are two separate things:
- OpenSEO app cost: $0, you host it yourself.
- DataForSEO API: pay-as-you-go based on usage.
For cost estimates, see DataForSEO API Cost Reference.
Tip
If anything in this section is confusing or unfamiliar like running terminal commands, copy this link into ChatGPT or Claude and ask it explain.
OpenSEO is built on Every App, a platform for easily self-hosting open source apps like OpenSEO in your own Cloudflare account. Cloudflare enables much more powerful functionality than is possible running on your own computer or on a VPS.
Windows Users
This has not been tested on Windows. Please let me know if you run into problems. Using WSL will likely work better. Also, try using fly.io Sprites to get a linux sandbox for free if you get totally stuck.
If you don't want to make a Cloudflare account yet (its easy!) and just want to test out OpenSEO, skip to the Run Locally section.
- Install Node.js (includes
npx). - Create a Cloudflare account: dash.cloudflare.com/sign-up
- Authenticate Wrangler:
npx wrangler login- Deploy the Every App Gateway (one-time per account):
npx everyapp gateway deploy- Create an Account
- Follow the link output by the last command to create an account. You will access OpenSEO through this account.
Deploy the app to cloudflare.
- Clone the repo to your machine
git clone https://github.com/every-app/open-seo.git- Switch to the directory
cd open-seo- Self host via the Every App CLI
npx everyapp app deployOpenSEO use DataForSEO to get the SEO info. You need an API key to connect OpenSEO to the service.
- Go to DataForSEO API Access.
- Request API credentials by email (
API key by emailorAPI password by email). - Use your DataForSEO login + API password, then base64 encode
login:password:
printf '%s' 'YOUR_LOGIN:YOUR_PASSWORD' | base64- Set this as a secret in Cloudflare. Use the value from the previous step when prompted.
npx wrangler secret put DATAFORSEO_API_KEYNow you're all set! Go back to the gateway, click on the OpenSEO app, and start getting better at SEO!
- Node.js 20+
- pnpm
- A DataForSEO account/API credentials
- Copy env template:
cp .env.example .env.local- Install and run:
pnpm install
# This runs in BYPASS_GATEWAY mode so that you don't need to set up the Every App gateway. This is fine for local use.
pnpm dev:agentsApp runs on http://localhost:3001 by default (or PORT from .env.local).
Running locally is the fastest way to test core flows. In the future, local mode will not include some Cloudflare-backed capabilities (for example cron-based rank tracking and infrastructure-powered performance improvements for heavier audits).
# This log file make it easier for your coding agent to debug.
mkdir .logs
touch .logs/dev-server.log
# terminal 1: start once and keep running
pnpm dev:agentspnpm dev:agentsmirrors output to.logs/dev-server.log(gitignored).- The log file is overwritten on each run.
- If you need a different port, set
PORTin.env.localand restart.
Generate migration:
pnpm run db:generateMigrate local DB:
pnpm run db:migrate:localContributions are very welcome.
- Open an issue for bugs, UX friction, or feature requests.
- Open a PR if you want to implement a feature directly.
- Community-driven improvements are prioritized, and high-quality PRs are encouraged.
If you want to contribute but are unsure where to start, open an issue and describe what you want to build.
Use this section to estimate DataForSEO spend per request type. OpenSEO itself remains free; these are API usage costs only.
As of February 26, 2026, DataForSEO’s public docs/pricing pages say:
- New accounts include $1 free credit to test the API.
- The minimum top-up/payment is $50.
That means you can try OpenSEO for free with the starter credit, then decide if/when to top up.
- DataForSEO Labs pricing: https://dataforseo.com/pricing/dataforseo-labs/dataforseo-google-api
- Google PageSpeed Insights API docs: https://developers.google.com/speed/docs/insights/v5/get-started
- No paid API calls in the current implementation.
- Current billed cost pattern (from account usage logs):
0.02 + (0.0001 x returned_keywords)USD
- Default app setting:
150results per search ($0.035each). - Available result tiers:
- 150 results =
$0.035 - 300 results =
$0.05 - 500 results =
$0.07
- 150 results =
- Standard domain overview request (with top 200 ranked keywords):
$0.0401per domain. - General formula if needed:
0.0201 + (0.0001 x ranked_keywords_returned)USD
- 100 keyword research requests at the default 150 results:
$3.50 - 100 keyword research requests at 500 results each:
$7.00 - 100 domain overviews (200 ranked keywords each):
$4.01