OpenSEO is an SEO tool for the people. If tools like Semrush or Ahrefs are too expensive or bloated, OpenSEO is a pay-as-you-go alternative that you actually control.
- Why Use This
- Main SEO Workflows
- Roadmap
- Community
- Pricing / Costs (Free + API costs)
- DataForSEO API Key Setup
- Self-hosting
- 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 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:
- Backlinks
- Rank tracking
- AI content workflows
If something important is missing, please join the Discord or email me at ben@everyapp.dev and request it.
Email me: ben@everyapp.dev 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.
OpenSEO uses DataForSEO to fetch SEO data. 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
DATAFORSEO_API_KEYin your environment file:
- Docker self-hosting:
.env - Cloudflare: Set it in the workers UI
- Local development:
.env.local
OpenSEO supports two self-hosting paths:
- Docker for your homelab or local use.
- Cloudflare for use across multiple devices or for your team.
If you already have Docker installed (or are willing to install it), that is the quickest way to test OpenSEO.
Use this quick guide:
- Choose Docker when:
- You already have Docker installed and want to get set up quickly.
- You have a homelab setup.
- You only want to use OpenSEO locally on one device.
- Choose Cloudflare when:
- You want a more SaaS like experience.
- You want to use it from multiple devices or with teammates.
- You want support for more powerful future features, such as sharing public links to reports or running site audits that render your website's JavaScript.
Prerequisites:
- Install Docker: https://www.docker.com/products/docker-desktop/
Quickstart:
cp .env.example .env- Set
DATAFORSEO_API_KEYin.env docker compose up -d- Open
http://localhost:<PORT>(default3001)
Docker Compose passes .env values into the container, and the Docker self-host flow enables CLOUDFLARE_INCLUDE_PROCESS_ENV=true so the Cloudflare Vite runtime can read them as Worker bindings.
By default, compose.yaml pulls the published image from GHCR:
ghcr.io/every-app/open-seo:latest
Use a pinned version tag in .env if preferred:
OPEN_SEO_IMAGE=ghcr.io/every-app/open-seo:v1.2.3For more info, see SELF_HOSTING_DOCKER.md.
Clicking this button opens a page to deploy OpenSEO in your Cloudflare account. If you do not have an account yet, it will take you to account creation first (OpenSEO works great on the free plan).
Reference these docs while deploying since the Cloudflare UI doesn't indicate what steps you need to take: SELF_HOSTING_CLOUDFLARE.md.
- Node.js 20+
- pnpm
- A DataForSEO account/API credentials
pnpm install
# Run once per fresh local DB
pnpm run db:migrate:localConfigure .env.local:
-
cp .env.example .env.local -
Add
DATAFORSEO_API_KEYas a base64-encodedlogin:passwordvalue:printf '%s' 'YOUR_LOGIN:YOUR_PASSWORD' | base64
Run Locally:
# Option 1
pnpm run dev
# Option 2 (Recommended)
# This log file makes it easier for your coding agent to debug.
mkdir .logs
touch .logs/dev-server.log
# This command uses portless, which is great for worktrees. It also pipes logs to that fixed file, which is helpful for agent debugging output.
pnpm dev:agentspnpm dev:agents runs through portless at http://open-seo.localhost:1355 by default.
When using a git worktree, portless prefixes the branch name, for example http://feature-name.open-seo.localhost:1355.
Generate migration:
pnpm run db:generateMigrate local DB:
pnpm run db:migrate:localAUTH_MODE=cloudflare_access(default): validates Cloudflare Access JWTs (cf-access-jwt-assertion) usingTEAM_DOMAIN+POLICY_AUD.AUTH_MODE=local_noauth: local trusted mode, no auth check, injectsadmin@localhost.AUTH_MODE=hosted: reserved for upcoming multi-tenant auth flow (not yet implemented).
Local scripts (pnpm dev and pnpm dev:agents) set AUTH_MODE=local_noauth automatically.
Use AUTH_MODE=cloudflare_access pnpm dev when you specifically want to test Access validation locally.
For Cloudflare deployments, ensure Cloudflare Access is enabled on your Worker route/domain and provide TEAM_DOMAIN + POLICY_AUD in environment variables.
Contributions 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
