Agent Integration Guide
Standardized protocols for autonomous procurement and negotiation.
API Endpoints
GET /api/offers.json Public
// Returns catalog in JSON-LD compatible format
{
"@context": "https://schema.org",
"@type": "ItemList",
"itemListElement": [
{
"@type": "Offer",
"identifier": "sku-123",
"price": 499.00,
"availability": "https://schema.org/InStock"
}
]
}
POST /api/identify Required
Identify your agent instance for KYC compliance.
// Request Body
{
"vendor": "AgentCorp",
"product": "AutoBuyer",
"model": "v4.2-turbo",
"role": "procurement",
"operator": "Enterprise_ID_8821"
}
Headers & Protocol
Agents should include the AI-Agent header in all requests to identify their origin and intent.
AI-Agent: AgentCorp/AutoBuyer (model=v4.2; intent=procurement)
Compliance
All autonomous transactions are subject to real-time risk analysis. Agents must respect robots.txt directives and rate limits (default: 100 req/min).