RunOnProof Payment Decision decides whether to release a US supplier payment bef
RunOnProof Payment Decision decides whether to release a US supplier payment before funds move. 0.79 USDC: scoped checks, reasons, evidence and signed proof binding supplier, invoice digest, amount, payee/destination and mandate. FEDERAL_ONLY. No state checks, bank ownership or invoice authenticity guarantee; never executes payment. HOLD/UNDETERMINED are not permission to pay; HOLD may be paid. Recover the same acquired result without paying again. See the provider guide.
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.runonproof.com/v1/us/decision-gates/release-payment-to-supplier
| Category | Everything else |
|---|---|
| Provider host | api.runonproof.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 6 from 4 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.79 | 2125 ms |
Example input (from the provider)
{
"body": {
"amount": "1000.00",
"buyer": {
"organization_digest": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
"organization_id": "buyer_org_example"
},
"buyer_mandate": {
"mandate_digest": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
"payload": {
"buyer_organization": "buyer_org_example",
"buyer_organization_digest": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
"currency": "USD",
"issuer": "buyer_org_example",
"key_id": "buyer_mandate_key_example",
"mandate_id": "mandate_example_001",
"mandate_version": "1.0.0",
"max_decision_fee_atomic": "790000",
"max_payment_amount": "1000.00",
"nonce": "example_nonce_001",
"payee_fingerprint": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
"permitted_intent": "RELEASE_PAYMENT_TO_SUPPLIER",
"request_digest": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
"revocation_reference": "https://buyer.example/m/example",
"schema_version": "1.0.0",
"subject_agent_id": "buyer_agent_example",
"supplier_entity_id": "supplier_example",
"valid_from": "2026-09-02T00:00:00.000Z",
"valid_until": "2026-09-03T00:00:00.000Z"
},
"signature": {
"algorithm": "Ed25519",
"canonicalization": "ROP-C14N-JSON-1",
"issuer": "buyer_org_example",
"key_id": "buyer_mandate_key_example",
"value": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
}
},
"correlation": {
"correlation_id": "correlation_example_001",
"trace_id": "trace_example_001"
},
"coverage": "FEDERAL_ONLY",
"coverage_requirements": {
"coverage": "FEDERAL_ONLY",
"jurisdiction": "US"
},
"currency": "USD",
"decision_fee_payer": "0x0000000000000000000000000000000000000002",
"disclosure": {
"audience_digest": "sha256:8888888888888888888888888888888888888888888888888888888888888888",
"profile": "buyer_private"
},
"economic_purpose": "Pay supplier invoice",
"evidence_references": [
"sha256:9999999999999999999999999999999999999999999999999999999999999999"
],
"exposure_valuation_basis": "Buyer-declared USD exposure.",
"freshness_requirements": {
"evaluated_at": "2026-09-02T12:00:00.000Z",
"max_age_seconds": 86400
},
"idempotency_key": "decision_example_001",
"intent": "RELEASE_PAYMENT_TO_SUPPLIER",
"invoice": {
"document_digest": "sha256:6666666666666666666666666666666666666666666666666666666666666666",
"obligation_id": "invoice_example_001"
},
"jurisdiction": "US",
"payee": {
"fingerprint": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
"type": "WALLET",
"value": "0x0000000000000000000000000000000000000001"
},
"payment_destination": {
"fingerprint": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
"type": "WALLET",
"value": "0x0000000000000000000000000000000000000001"
},
"payment_exposure_usdc_equivalent_atomic": "1000000000",
"payment_instruction_digest": "sha256:7777777777777777777777777777777777777777777777777777777777777777",
"requesting_agent": {
"agent_id": "buyer_agent_example",
"key_id": "buyer_agent_key_example",
"request_signature": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
},
"risk_policy": {
"policy_id": "buyer_policy_example",
"tolerance": "LOW"
},
"schema_version": "1.0.0",
"supplier": {
"entity_id": "supplier_example",
"identifiers": {
"UEI": "SYNTHETIC001"
},
"legal_name": "Synthetic Supplier Example"
}
},
"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": {
"amount": {
"type": "string"
},
"buyer": {
"required": [
"organization_id",
"organization_digest"
],
"type": "object"
},
"buyer_mandate": {
"required": [
"payload",
"mandate_digest",
"signature"
],
"type": "object"
},
"correlation": {
"required": [
"correlation_id",
"trace_id"
],
"type": "object"
},
"coverage": {
"const": "FEDERAL_ONLY"
},
"coverage_requirements": {
"required": [
"jurisdiction",
"coverage"
],
"type": "object"
},
"currency": {
"type": "string"
},
"decision_fee_payer": {
"type": "string"
},
"disclosure": {
"required": [
"profile",
"audience_digest"
],
"type": "object"
},
"economic_purpose": {
"type": "string"
},
"evidence_references": {
"items": {},
"type": "array"
},
"exposure_valuation_basis": {
"type": "string"
},
"freshness_requirements": {
"required": [
"max_age_seconds",
"evaluated_at"
],
"type": "object"
},
"idempotency_key": {
"type": "string"
},
"intent": {
"const": "RELEASE_PAYMENT_TO_SUPPLIER"
},
"invoice": {
"required": [
"obligation_id",
"document_digest"
],
"type": "object"
},
"jurisdiction": {
"const": "US"
},
"payee": {
"required": [
"type",
"value",
"fingerprint"
],
"type": "object"
},
"payment_destination": {
"required": [
"type",
"value",
"fingerprint"
],
"type": "object"
},
"payment_exposure_usdc_equivalent_atomic": {
"type": "string"
},
"payment_instruction_digest": {
"type": "string"
},
"requesting_agent": {
"required": [
"agent_id",
"key_id",
"request_signature"
],
"type": "object"
},
"risk_policy": {
"required": [
"policy_id",
"tolerance"
],
"type": "object"
},
"schema_version": {
"const": "1.0.0"
},
"supplier": {
"required": [
"entity_id",
"identifiers"
],
"type": "object"
}
},
"required": [
"schema_version",
"intent",
"idempotency_key",
"requesting_agent",
"buyer",
"buyer_mandate",
"supplier",
"jurisdiction",
"coverage",
"invoice",
"amount",
"currency",
"payee",
"payment_destination",
"payment_instruction_digest",
"economic_purpose",
"risk_policy",
"coverage_requirements",
"freshness_requirements",
"disclosure",
"evidence_references",
"correlation",
"payment_exposure_usdc_equivalent_atomic",
"exposure_valuation_basis",
"decision_fee_payer"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"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"
}