X402 Delivery Content Type Check
X402 Delivery Content Type Check: compares delivery content type with buyer-accepted media types using only bounded caller-supplied values. Call when you need a bounded x402 delivery content type check result before paying for or accepting an x402 or agent delivery assembled from caller-supplied challenge and result metadata. Returns contract-specific checks, normalized evidence, mismatch reasons, and an explicit acceptance or rejection status for X402 Delivery Content Type Check as versioned d…
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.delx.ai/api/v1/x402/x402-delivery-content-type-check
| Category | Everything else |
|---|---|
| Provider host | api.delx.ai |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.001 | 1240 ms |
Example input (from the provider)
{
"body": {
"accepted": [
"application/json"
],
"content_type": "application/json; charset=utf-8"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"accepted": {
"description": "Accepted supplied to X402 Delivery Content Type Check; used only for this bounded calculation and processed in memory without retention.",
"items": {
"maxLength": 8192,
"type": "string"
},
"maxItems": 256,
"type": "array"
},
"content_type": {
"description": "Content Type supplied to X402 Delivery Content Type Check; used only for this bounded calculation and processed in memory without retention.",
"maxLength": 8192,
"type": "string"
}
},
"required": [
"content_type",
"accepted"
],
"type": "object"
},
"bodyType": {
"const": "json",
"type": "string"
},
"method": {
"const": "POST",
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": true,
"description": "Versioned bounded first-party JSON result with input evidence; caller data is processed in memory and not retained.",
"properties": {
"evidence": {
"additionalProperties": true,
"properties": {
"external_calls": {
"type": "integer"
},
"input_sha256": {
"type": "string"
},
"retained": {
"type": "boolean"
}
},
"type": "object"
},
"operation": {
"type": "string"
},
"result": {
"additionalProperties": true,
"properties": {
"accepted": {
"type": "boolean"
},
"content_type": {
"type": "string"
}
},
"type": "object"
},
"schema": {
"type": "string"
},
"status": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}