Irisnet API

Machine Learning / API Key Intermediate HTTPS CORS
Varies by plan (check documentation)

Overview

Irisnet is a real-time content moderation API that automatically detects and can blur or block unwanted visual content such as nudity, violence, or other policy-violating material. You send an image or video frame URL and configure which content categories to check. It is ideal for platforms where user-generated content needs to be kept safe and policy-compliant.

Beginner Tip

Start with a single image check before integrating video streams—the image endpoint is simpler and great for understanding the response structure. Use the 'set' parameter to define which content categories you want to detect.

Available Data

Irisnet data via REST API

Example Response

JSON Response
{
  "status": "success",
  "data": {
    "result": "Data from Irisnet",
    "description": "Realtime content moderation API that blocks or blurs unwanted images in real-time",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

status HTTP-style status code for the moderation result (200 means processed successfully).
brokenRules List of content rule violations detected in the image.
brokenRules[].name Name of the violated content category (e.g., 'nudity', 'violence').
brokenRules[].severity Severity score of the rule violation, used to decide if action should be taken.
keptRules List of content rules that were checked but not violated, confirming safe content categories.

Implementation Example

Request
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://irisnet.de/api/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

401 Unauthorized License key is missing, invalid, or has expired
Check your active license key in the Irisnet dashboard and include it directly in the request URL path as shown in the docs.
400 Bad Request: URL not reachable The image URL provided cannot be fetched by Irisnet servers
Ensure the image URL is publicly accessible without authentication; avoid localhost or private network URLs.
429 Too Many Requests API rate limit exceeded for your license tier
Implement request queuing with delays between calls, or upgrade your license plan for a higher request limit.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS YES
Category Machine Learning
Difficulty Intermediate
Verified: 2026-04-07

Similar APIs

View All →