Voygr Launches Business Validation API for Fresh Place Intelligence

Voygr (YC W26) has launched API access for their real-world place intelligence platform, starting with a Business Validation API that addresses stale place data in AI applications. The founders, Yarik and Vlad, have backgrounds at Google Maps, Apple, Meta, and ridesharing/travel companies.
What Voygr Solves
The core problem: ~40% of Google searches and up to 20% of LLM prompts involve local context, but 25-30% of places churn every year. Traditional maps APIs provide fixed snapshots without detecting real-time changes like closures, rebranding, or operational status changes. Voygr's benchmark showed even the best LLMs get 1 in 12 local queries wrong.
Current API Capabilities
- Business Validation API: Tells you whether a business is actually operating, closed, rebranded, or invalid
- Input requirements: POI/business name and its address (exact address needed for businesses within plazas)
- Processing scale: Tens of thousands of places per day for enterprise customers
- Methodology: Aggregates multiple data sources, detects conflicting signals, returns structured verdict
The team describes their approach as "continuous integration, but for the physical world." They're not yet providing opening times or pictures - those features are in development under an experimental enrichment API not yet open to the public.
Technical Details
Voygr started with "one of the hardest parts - knowing whether a place is even real." Their system actively detects changes since "the world doesn't emit structured 'I closed' events." The API is available at github.com/voygr-tech/dev-tools with instructions defined for agents to onboard.
This infrastructure becomes increasingly critical as AI agents start searching, booking, and shopping in the real world - the founders estimate this problem gets 10x bigger with agent adoption.
📖 Read the full source: HN AI Agents
👀 See Also

My Agent Built Himself an Interoception System — Now He Has Desires

skill-depot: A Local-First Memory and Skill System for MCP-Compatible AI Agents
skill-depot is a retrieval system that stores agent knowledge as Markdown files and uses vector embeddings to semantically search and selectively load only relevant content. It runs 100% locally with no API keys, works with any MCP-compatible agent, and can be set up with npx skill-depot init.

Bio-Inspired Memory System for Local LLMs: LTP and Selective Oblivion Implementation
A developer built a local MCP server implementing bio-inspired memory mechanics including Long-Term Potentiation reinforcement, selective oblivion decay, and weekly consolidation cycles. The system uses hybrid search with sqlite-vec and text fallbacks, non-blocking architecture with asyncio executors, and maintains state via a persistent 'Soul' file.

Sponsio: Deterministic Guard Rails for OpenClaw — Blocking 'Legal but Wrong' Tool Calls
Open-source tool that sits at the tool boundary, evaluating each call with temporal logic contracts (~0.14ms p50). Prevents agents from editing files outside the working directory, force-pushing, or running migrations against the wrong database.