API Documentation

Integrate IntelliSector supply chain intelligence into your applications

Authentication

All API requests require authentication using your API key in the Authorization header.

Authorization: Bearer YOUR_API_KEY

Get your API key by signing up - it will be sent to your email.

Base URL

https://intellisector.com/api

Endpoints

Get Intelligence Analysis

GET /api/intelligence

Get AI-powered supply chain intelligence analysis.

Parameters

vertical (optional): Filter by vertical (manufacturing, financial, energy_sustainability)

Example Request

curl -H "Authorization: Bearer YOUR_API_KEY" \
     https://intellisector.com/api/intelligence/manufacturing

Response

{
  "intelligence": "AI analysis of current supply chain trends...",
  "vertical": "manufacturing",
  "timestamp": "2025-09-24T05:30:00Z",
  "confidence": 0.95
}

Get Raw Articles

GET /api/articles

Get raw articles with links and metadata.

Example Request

curl -H "Authorization: Bearer YOUR_API_KEY" \
     https://intellisector.com/api/articles/manufacturing

Response

{
  "articles": [
    {
      "title": "Supply Chain Disruption Alert",
      "link": "https://example.com/article",
      "source": "Supply Chain Dive",
      "published": "2025-09-24T05:00:00Z",
      "summary": "Article summary..."
    }
  ],
  "count": 20,
  "vertical": "manufacturing"
}

System Status

GET /api/status

Check system status and data freshness.

Example Request

curl https://intellisector.com/api/status

Rate Limits

Free Trial

100 requests/hour

Developer

1,000 requests/hour

Professional

5,000 requests/hour

Enterprise

Unlimited

Error Codes

401 Unauthorized - Invalid API key
429 Rate limit exceeded
500 Internal server error

Need Help?

Contact our support team for API assistance

Contact Support