SEO Analysis at $0.10/Call — Why You Don't Need a $99/Month Subscription
Ahrefs costs $99/month. SEMrush costs $119/month. You need 15 SEO analyses this month.
With AADDYY: 15 analyses x $0.10 = $1.50.
import { AADDYY } from 'aaddyy'
const client = new AADDYY()
const analysis = await client.seo.analyze({ url: 'https://example.com' })
console.log(analysis.overallScore)
// { total: 85.5, grade: "B+", status: "good" }
console.log(analysis.categoryScores)
// { meta: 90, content: 85, technical: 80, performance: 88 }
console.log(analysis.recommendations[0])
// { category: "meta", priority: "high", issue: "Meta description too short", recommendation: "..." }
10 credits. One API call. Full audit with scores, categories, and actionable recommendations.
What You Get Per Call
Each SEO analysis returns:
- Overall score with letter grade (A+ through F)
- Category scores: meta tags, content quality, technical SEO, performance
- Prioritized recommendations: what to fix first, categorized by impact
- Backlink analysis (optional):
includeBacklinks: truefor link profile data
// Full audit with backlinks
const fullAudit = await client.seo.analyze({
url: 'https://mysite.com',
includeBacklinks: true
})
// Just backlinks
const backlinks = await client.seo.backlinks({ url: 'https://mysite.com' })
The Math: AADDYY vs Subscriptions
| Usage | Ahrefs | SEMrush | AADDYY |
|---|---|---|---|
| 10 analyses/month | $99 | $119 | $1.00 |
| 50 analyses/month | $99 | $119 | $5.00 |
| 100 analyses/month | $99 | $119 | $10.00 |
| 200 analyses/month | $179 | $229 | $20.00 |
Below 1,000 analyses per month, AADDYY is cheaper. For most indie developers, agencies handling a few clients, and startups building SEO dashboards — that covers every use case.
Build an SEO Dashboard in 20 Lines
import express from 'express'
import { AADDYY } from 'aaddyy'
const app = express()
const ai = new AADDYY()
app.use(express.json())
app.post('/api/analyze', async (req, res) => {
const { url } = req.body
const result = await ai.seo.analyze({ url, includeBacklinks: true })
res.json({
url,
score: result.overallScore,
categories: result.categoryScores,
topIssues: result.recommendations.slice(0, 5)
})
})
app.listen(3000)
Your clients get an SEO tool. You pay $0.10 per analysis. Charge them $5/analysis and you're profitable from day one.
Keyword Research Too
const keywords = await client.keywords.research({
topic: 'AI tools for developers',
country: 'US'
})
// Returns: keyword suggestions, search volumes, difficulty scores, monetization strategies
~5 credits ($0.05) per research query. SEMrush charges this as part of the $119/month plan.
Getting Started
npm install aaddyy
export AADDYY_API_KEY=aip_your_key_here
50 free credits = 5 free SEO analyses to test with.
Explore AI tools on AADDYY
Browse toolsMore from the blog
Navigating AI Infrastructure Investments: A Guide for Enterprises
Enterprises are racing to operationalize AI at scale, but real constraints have slowed progress. Nvidia’s $500B push into AI infrastructure financing is set to reshape that reality. Here’s how to turn the moment into a durable advantage.
Understanding the Impact of Agentic AI Standardization on Business Operations
Explore how the Agentic AI Foundation's A2A protocol is transforming business operations by enhancing interoperability, reducing vendor lock-in, and streamlining workflows across industries like finance, healthcare, and logistics.
The Impact of Unified AI Experiences on User Adoption: A Case Study of Microsoft Copilot
Explore how Microsoft’s unified Copilot app enhances user adoption by streamlining workflows, reducing training time, and centralizing governance, leading to measurable productivity gains.