Audit an Apify actor before you spend on it
Audit an Apify actor before you spend on it. Send one actor ID (e.g. apify/instagram-scraper) and find out if it is reliable, if it returns the fields it advertises, and what it really costs per usable item. Scored against unlimited criteria: 23 pre-built ones, deep-scan criteria measured from live funded runs, or your own rubric in plain English. Compare actors and pick the best one. Returns JSON with per-criterion scores, evidence and a verdict.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://audit-tools.ai/api/evaluations
| Category | Code and developer |
|---|---|
| Provider host | audit-tools.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"mode": "full",
"targets": [
"apify/instagram-scraper"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"customCriteria": {
"description": "Optional custom rubric: your own criteria to score the actor against, each with a name and a plain-language description of what to measure",
"type": "array"
},
"mode": {
"description": "Full evaluation (all available deep-scan criteria)",
"enum": [
"full"
],
"type": "string"
},
"targets": {
"description": "One Apify actor ID or URL, e.g. apify/instagram-scraper",
"items": {
"type": "string"
},
"maxItems": 1,
"minItems": 1,
"type": "array"
}
},
"required": [
"targets",
"mode"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}