Hordus AI Developers

Build the future of Generative Engine Optimization with our powerful APIs and agentic infrastructure.

api

API Documentation

Comprehensive guides and references for the Hordus AI REST API. Understand how to programmatically access brand visibility metrics and influence datasets.

View OpenAPI Spec
key

API Keys & Auth Access

Manage your authentication credentials securely. Generate API tokens with scoped access permissions to integrate Hordus directly into your systems.

webhook

Webhooks

Set up real-time event notifications for automated workflows. React instantly when brand visibility metric thresholds are met or data is updated.

Read Guide
developer_board

MCP Server & Agent Integration

Connect external AI agents directly to the Hordus dataset utilizing our Model Context Protocol (MCP) server for seamless autonomous data retrieval.

Explore MCP Docs

Quickstart: Authentication & API Call

Connecting to the Hordus AI engine requires a valid X-API-Key passed as a standard HTTP header. Below is a copy-pasteable implementation illustrating how to securely extract real-time Generative Engine Optimization metrics for a specific brand identifier.

cURL RequestBash
curl -X GET "https://www.hordus.ai/api/v1/brand/brand_abc123/visibility" \
  -H "Accept: application/json" \
  -H "X-API-Key: YOUR_API_KEY_HERE"
Node.js (Fetch)TypeScript
const response = await fetch(
  "https://www.hordus.ai/api/v1/brand/brand_abc123/visibility", {
    method: "GET",
    headers: {
      "Accept": "application/json",
      "X-API-Key": process.env.HORDUS_API_KEY
    }
});

const data = await response.json();
console.log(data.answerShare); // 0.85

Our isolated developer sandbox allows you to safely test API calls and data ingestion scripts without affecting production data. Access is granted to all registered developer accounts.