Integrate risk intelligence into your workflows. REST API and MCP server for AI agents.

The Senserity API gives developers programmatic access to company risk data, insight results, reports, and alerts. The MCP server enables AI agents to perform due diligence conversationally.

What the API provides

Company lookup and risk scores

Search for companies by name or number. Retrieve risk grades, overall scores, and category breakdowns as structured JSON.

Insight results and alerts

Access individual test results across all 718+ checks. Subscribe to alerts for risk changes on monitored companies.

Reports and watchlist management

Generate PDF due diligence reports programmatically. Add and remove companies from your watchlist via the API.

Cursor-based pagination

Efficient pagination for large result sets. Rate limits scale with your plan: 20 requests per minute on Professional, 60 on Enterprise.

Quick start

Authenticate with a bearer token, then query any endpoint. API keys use the format sns_live_... and are created in Settings > API in the dashboard.

curl -s https://app.senserity.co.uk/api/v1/companies/search \
  -H "Authorization: Bearer sns_live_your_key_here" \
  -G -d "q=Blueloop+Limited"

# Response
{
  "data": [
    {
      "company_number": "03981322",
      "company_name": "BLUELOOP LIMITED",
      "risk_grade": "A",
      "risk_score": 8.7,
      "status": "Active"
    }
  ],
  "meta": {
    "cursor": null,
    "has_more": false,
    "request_id": "req_abc123"
  }
}

MCP server for AI agents

The Model Context Protocol (MCP) is an open standard that lets AI assistants use external tools. The Senserity MCP server exposes risk intelligence tools that Claude, ChatGPT, Cursor, and other MCP-compatible agents can call during a conversation to perform due diligence programmatically.

search_company

Search for UK companies by name or number.

get_risk_summary

Retrieve the overall risk score, grade, and category breakdown.

list_insights

List all insight test results for a company.

run_insights

Trigger a fresh risk assessment for a company.

get_company

Get full company profile including registered address and SIC codes.

list_alerts

Get risk alerts for monitored companies.

add_to_watchlist

Add a company to your monitoring watchlist.

generate_report

Generate a PDF due diligence report.

list_reports

List existing reports, optionally filtered by company.

Documentation

API and MCP access requires a Professional or Enterprise plan. See pricing

Ready to get started?

Start free with a 30-day trial — 10 companies and 40 credits included. No credit card required.