API
이 사이트에 표시된 모든 데이터에 대해 무료로 읽기 전용 JSON 접근을 제공합니다. 캐시에서 직접 제공되며 사이트 업데이트 시 함께 갱신됩니다. API 키가 필요하지 않습니다. 연구 및 정보 제공 목적이며, 등급은 측정된 점검 결과이고 순위를 보장하지 않습니다. 리뷰는 웹사이트 양식을 통해서만 생성되며, 이 API는 크롤링을 트리거하지 않습니다.
/sites
All graded sites with latest score, grade, and zone; filter by grade/zone
curl "https://seo2aio.ai/api/v1/sites?zone=red"
/site/{domain}
Latest full review for one site: categories, every check with evidence, crawl facts
curl "https://seo2aio.ai/api/v1/site/example.com"
/site/{domain}/history
Grade history across all its reviews
curl "https://seo2aio.ai/api/v1/site/example.com/history"
/site/{domain}/recommendations
The current recommendation set with verification statuses
curl "https://seo2aio.ai/api/v1/site/example.com/recommendations"
/checks
Catalog of grading categories and weights
curl "https://seo2aio.ai/api/v1/checks"
/stats
Aggregate stats: average score, grade distribution, category averages
curl "https://seo2aio.ai/api/v1/stats"
/search
Search graded sites by domain
curl "https://seo2aio.ai/api/v1/search?q=example"
참고 사항
Responses use this envelope:
{
"data": [ { "domain": "example.com", "seo_score": 74, "seo_grade": "C",
"aio_score": 61, "aio_grade": "D" } ],
"meta": {
"count": 1,
"as_of": "2026-08-05T12:00:00Z",
"attribution": "Measurements by this site's own crawler; RDAP registry records",
"disclaimer": "Research and information only: not professional advice and never a ranking guarantee."
}
}
Everything is served from our own database; this API never crawls target sites or calls upstream vendors. CORS is open for read-only use. Please keep request volumes reasonable; heavy users should cache responses. Start at /api/v1 for a machine-readable index of all endpoints.