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
Control Your AI Costs: Pay-Per-Use AI Tools via API (No Surprises)
No more surprise AI bills. AADDYY uses a credit system — 1 credit = $0.01, every tool shows its cost upfront, and when credits run out, calls stop. Budget your AI costs before writing a line of code.
AI Image Generation API: Logos, Headshots & Product Photos for Cents
Beyond generic text-to-image: AADDYY offers specialized API endpoints for logos, headshots, product photos, album covers, and t-shirt designs — each tuned for that output type. From $0.04 per image, pay-per-use.
Build an AI Tutor App: Math & Physics Solver API for $0.01/Problem
Build an AI tutor app with step-by-step math and physics solutions for $0.01 per problem. AADDYY's solver APIs return structured steps, formulas, verification, and common mistakes. Works with text and image input.