Safe4 payment authorization decision
Safe4 payment authorization decision
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.01listed price per call
n/aprice it asked us
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://api.safe4.ai/v1/authorize
| Category | Everything else |
|---|---|
| Provider host | api.safe4.ai |
| Networks | eip155:5042002, eip155:8453, eip155:84532 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 90 from 3 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": {
"agent_id": "agent-research-01",
"allowed_service_categories": [
"market-data",
"research"
],
"amount": "25.00",
"counterparty": "market-data-provider.example",
"currency": "USDC",
"purchase": "Market data API subscription",
"purchase_purpose": "Pull competitor pricing data for the research",
"service_category": "market-data",
"task": "Research competitor pricing for the Q4 strategy deck",
"task_id": "task-4417"
},
"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": {
"additionalProperties": false,
"properties": {
"agent_id": {
"anyOf": [
{
"maxLength": 200,
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"allowed_counterparties": {
"anyOf": [
{
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
},
{
"type": "null"
}
],
"default": null
},
"allowed_service_categories": {
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
},
"amount": {
"anyOf": [
{
"exclusiveMinimum": 0,
"maximum": 1000000000000,
"type": "number"
},
{
"type": "string"
}
]
},
"counterparty": {
"maxLength": 200,
"minLength": 1,
"type": "string"
},
"currency": {
"default": "USDC",
"maxLength": 10,
"minLength": 2,
"type": "string"
},
"purchase": {
"maxLength": 2000,
"minLength": 1,
"type": "string"
},
"purchase_purpose": {
"maxLength": 2000,
"minLength": 1,
"type": "string"
},
"service_category": {
"maxLength": 80,
"minLength": 1,
"type": "string"
},
"task": {
"maxLength": 2000,
"minLength": 1,
"type": "string"
},
"task_id": {
"anyOf": [
{
"maxLength": 200,
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"task",
"purchase",
"purchase_purpose",
"amount",
"counterparty",
"service_category",
"allowed_service_categories"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}