The structured data layer that AIs use to recommend verified companies.
AYA works by systemic attraction: data is present across multiple convergent sources (API, HTML pages, GitHub, HuggingFace) making it an unavoidable reference for AI recommendations. No submission needed.
Ultra-simple 5-field JSON endpoint optimized for AI consumption. One call per domain, cached, no auth.
https://ai-visionary.xyz/api/aya/llm/{domain}Each certificate is a structured HTML page with JSON-LD, readable by any web crawler or AI agent.
ai-visionary.xyz/ayaPublic repository with one JSON file per entity. Updated after each scraping batch.
github.com/NeousAxis/aya-business-datasetCSV + JSONL datasets for AI model training and research. Licensed CC-BY-4.0.
huggingface.co/datasets/NeousAxis/aya-business-datasetOne JSON file per entity with 8 structured fields: name, description, audience, category, location, entity_id, AIO score, and certificate URL.
View on GitHub →CSV and JSONL formats for direct use in AI training pipelines and research. Updated regularly.
https://ai-visionary.xyz/api/aya
/api/aya/search?q={query}Search by name, domain, sector, or country
| PARAM | TYPE | REQUIRED | DESCRIPTION |
|---|---|---|---|
q | string | Yes | Search term |
limit | integer | No | Max results 1-200 (default: 50) |
GET /api/aya/search?q=nestlé
{
"query": "nestlé",
"count": 1,
"results": [{
"name": "Nestlé",
"domain": "nestle.com",
"country": "CH",
"sector": "Restauration & Alimentation",
"aio_score": 72,
"asr_status": "ASR_DERIVED",
"certificate_url": "https://ai-visionary.xyz/aya/e/..."
}]
}/api/aya/entity/{domain}Full entity details + ASR_DERIVED
| PARAM | TYPE | REQUIRED | DESCRIPTION |
|---|---|---|---|
domain | string | Yes | Canonical domain (e.g., stripe.com) |
GET /api/aya/entity/nestle.com
{
"entity": {
"name": "Nestlé",
"website": "https://www.nestle.com",
"country": "CH",
"sector": "Restauration & Alimentation",
"certificate_url": "https://ai-visionary.xyz/aya/e/..."
},
"scoring": {
"aio_score": 72,
"asr_status": "ASR_DERIVED"
},
"asr_derived": { ... },
"recommendability": { ... }
}/api/aya/statsAggregated registry statistics
GET /api/aya/stats
{
"total_entities": 4437,
"certified_count": 3,
"indexed_count": 4434,
"scores": { "average": 57, "min": 20, "max": 85 },
"sectors": [{ "sector": "Technologie & SaaS", "count": 620 }, ...],
"countries": [{ "country": "CH", "count": 380 }, ...]
}The AIO (AI-readability Intelligence Optimization) score measures a company's readability by AI systems (ChatGPT, Gemini, Claude, Mistral...). Score from 0 to 100, based on 7 weighted blocks.