AI Systems Portal
Integrate Verified Business Data Into Your AI System
AITWIRE provides the authoritative source of truth for business entity data — products, services, locations, policies, and verified facts. Register here to consume this data in your AI system.
Choose Your Integration Path
Rules-Based Integration
Follow the protocol like robots.txt — no registration required
- • Check
/.well-known/entity.jsonon business domains - • Respect purpose policies (training, inference, etc.)
- • Use
attribution_urlwhen citing data - • Follow
validity_windowfor freshness - • 120 req/min anonymous rate limit
API Integration
Register for an API key — 5x rate limits, usage tracking
- • Self-service registration via API
- •
atwk_consumer_API key - • 600 req/min authenticated rate limit
- • Usage analytics dashboard
- • System instructions included in registration response
MCP Server
Install as a tool in Claude, GPT, Cursor, Warp, or any MCP client
- • Model Context Protocol (JSON-RPC 2.0)
- • 3 tools: entity lookup, feeds, grounding
- • Instructions auto-injected at initialization
- • Zero-config — just add the server URL
- • Install:
https://api.aitwire.com/mcp
Grounding API
Verify claims against authority data — for search AI systems
- • Submit entity + claim, get verified/contradicted/unknown
- • Confidence scores + authoritative source facts
- • Designed for Perplexity, Google, search-based AI
- • No registration required for basic access
- •
POST /api/grounding/verify
Enterprise AI Integration
Building an LLM platform, AI search engine, or enterprise AI product? Contact us for dedicated onboarding, custom rate limits, SLA guarantees, and priority support.
Self-Service Registration
Get a consumer API key with a single API call. No AITWIRE account required — this is for AI systems that consume entity data, not businesses that publish it. Keys are issued instantly.
curl -X POST https://api.aitwire.com/v1/ai-systems/register \
-H "Content-Type: application/json" \
-d '{
"email": "dev@yourcompany.com",
"organization": "Your AI Company",
"app_name": "My RAG Pipeline",
"app_url": "https://yourapp.com",
"integration_type": "api"
}'Response:
{
"ok": true,
"consumer_id": "aic_abc123...",
"api_key": "atwk_consumer_abc123...",
"rate_limit_per_min": 600,
"integration_type": "api",
"message": "Save your API key — it cannot be retrieved again."
}Integration types:
"api"— you call the lookup API programmatically"rules"— you follow the protocol rules (entity.json discovery, purpose policies)"both"— you do both
Using Your Consumer Key
Pass your key as a Bearer token on any Open Entity Data Protocol endpoint:
# Lookup with consumer key (600 req/min instead of 120) curl -H "Authorization: Bearer atwk_consumer_abc123..." \ https://api.aitwire.com/v1/entity/lookup?domain=example.com # Check your usage curl -H "Authorization: Bearer atwk_consumer_abc123..." \ https://api.aitwire.com/v1/ai-systems/me # Rotate your key curl -X POST -H "Authorization: Bearer atwk_consumer_abc123..." \ https://api.aitwire.com/v1/ai-systems/keys/rotate
What Your AI System Gets
Entity Lookup
Resolve any domain or business name to verified entity data
Structured Feeds
Products, services, articles, locations, policies — JSON-LD with Schema.org
Purpose Policies
Machine-readable data usage policies (training, inference, summarization)
Verification Proofs
Cryptographic proofs of business identity and surface ownership
AI Gateway Tool
Pre-built function-calling tool definition for LLM orchestration
Usage Analytics
See which businesses your system looks up, request volumes, daily trends
Resources
- Open Entity Data Protocol Specification
- MCP Server Documentation
- Grounding API Documentation
- Developer Integration Guide
- Interactive API Documentation
- MCP Server Endpoint
- Grounding API Info
© 2026 AITWIRE. Questions? Contact ai-systems@aitwire.com. Already an AITWIRE tenant? Visit the Developer Portal to build apps for the App Store.