API Documentation

IPLYR Developer Platform

Integrate attribution tracking and revenue routing into your applications with our powerful API suite

Real-time Detection

Sub-second content analysis and attribution matching across all major AI models

Enterprise Security

SOC2 compliant with end-to-end encryption and comprehensive audit logging

Global Coverage

Monitor AI usage across 50+ platforms and training datasets worldwide

Developer First

Comprehensive SDKs for Python, JavaScript, Go, and REST APIs with OpenAPI specs

API Reference

Complete API documentation with interactive examples

Endpoints

/api/v1/attribution/analyze
POST
Analyze content for potential AI training usage
curl -X POST "https://api.iplyr.io/api/v1/attribution/analyze" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "content": "Your content text here...",
    "content_type": "text",
    "metadata": {
      "title": "Optional title",
      "author": "Optional author"
    }
  }'

Response Examples

Successful Attribution Analysis
{
  "success": true,
  "analysis_id": "iplyr_analysis_abc123",
  "fingerprint": "IPID-XYZ789ABC",
  "confidence": 94.2,
  "potential_matches": 23,
  "estimated_revenue": {
    "monthly": 127.50,
    "currency": "USD"
  },
  "attribution_sources": [
    {
      "provider": "OpenAI",
      "model": "GPT-4",
      "confidence": 94.2,
      "training_dataset": "Common Crawl 2023"
    },
    {
      "provider": "Anthropic", 
      "model": "Claude-3",
      "confidence": 87.1,
      "training_dataset": "Books Corpus"
    }
  ],
  "risk_assessment": {
    "level": "medium",
    "factors": ["high_traffic_model", "commercial_usage"]
  },
  "next_steps": {
    "register_content": "/api/v1/content/register",
    "setup_monitoring": "/api/v1/monitors/create"
  }
}

Ready to Get Started?

Join thousands of developers using IPLYR to build attribution-aware applications