x402 List

x402 Protocol Service Directory

x402-extract-api

Data

Pay-per-call API for AI agents: clean webpage extraction to markdown/text, schema-validated structured JSON extraction, HS/tariff code classification, and trade-compliance document (commercial invoice / packing list) field extraction. Priced per call in USDC via x402 -- no accounts or API keys required.

Pay from $0.002 to $0.03 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

listed 2026-08-03 · no on-chain settlement recorded yet

BASE URL https://api.jomofagan.com WEBSITE https://api.jomofagan.com ENDPOINTS 4 NETWORK Base ASSET USDC MEMBER SINCE 2026-08-03 MONITORED SINCE 2026-08-03

ASSESSMENT

updated 2h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 100%
uptime 24h
-
uptime 7d
-
uptime 30d
-
uptime 90d
-
response p95
274ms
avg response
274ms
total checks
1
compliance A (14/14)

14 of 14 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.002 to $0.03 (p24 in Data)
price (min)
$0.002
price (max)
$0.03
category percentile (min)
p24 in Data
category percentile (max)
p55 in Data
endpoints / prices
4 / 4
model
tiered
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

domain age
2236d
registrar
GoDaddy.com, LLC
hosting
custom
domain created
2020-06-18

Identity facts, not a risk score.

traction $0 30d · 0 buyers
volume 30d
$0
buyers 30d
0
settlements 30d
0
first settlement
---
last settlement
---
top buyer share
-
trend 7d vs 30d
-
networks
eip155:8453
volume all-time
$0
settlements all-time
0
median settlement 30d
$0
max settlement 30d
$0
settled via
-

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

The service extracts and classifies data from various documents including trade documents and HS codes.

category
data-extraction
in
body
data-extractiondocument-processinghs-classificationtrade-documents

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
POST /classify-hs-code $0.01 Base USDC
POST /extract $0.02 Base USDC
POST /extract-trade-doc $0.03 Base USDC
POST /read $0.002 Base USDC
4 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to POST /classify-hs-code returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i -X POST 'https://api.jomofagan.com/classify-hs-code'
// 402 response (captured by monitor) · 4 payloads · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xAd586c246B75982EC16c6a5EFE4488222965408f",
        "amount": "20000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "http://api.jomofagan.com/extract",
      "mimeType": "application/json",
      "description": "Fetch a URL and return structured JSON matching a caller-supplied JSON Schema, extracted and validated with an LLM + retry."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "url": "https://example.com/product",
              "schema": {
                "type": "object",
                "properties": {
                  "price": {
                    "type": "number"
                  }
                }
              }
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "url": "https://example.com/product",
              "data": {
                "price": 19.99
              }
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url",
                    "schema"
                  ],
                  "properties": {
                    "url": {
                      "type": "string"
                    },
                    "schema": {
                      "type": "object",
                      "description": "JSON Schema the response must validate against"
                    },
                    "instructions": {
                      "type": "string",
                      "description": "Optional extra guidance for the extractor"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "url": {
                      "type": "string"
                    },
                    "data": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xAd586c246B75982EC16c6a5EFE4488222965408f",
        "amount": "10000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "http://api.jomofagan.com/classify-hs-code",
      "mimeType": "application/json",
      "description": "Classify a product description under the Harmonized System (HS/HTS) for customs and tariff purposes. Text-only, no document needed. Informational only, not a binding ruling."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "originCountry": "VN",
              "productDescription": "Men's cotton knit t-shirt, short sleeve"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "hsCode": "6109.10",
              "confidence": "high",
              "description": "T-shirts, of cotton, knitted"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "productDescription"
                  ],
                  "properties": {
                    "originCountry": {
                      "type": "string",
                      "description": "Optional ISO country code"
                    },
                    "productDescription": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "hsCode": {
                      "type": "string"
                    },
                    "confidence": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xAd586c246B75982EC16c6a5EFE4488222965408f",
        "amount": "30000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "http://api.jomofagan.com/extract-trade-doc",
      "mimeType": "application/json",
      "description": "Extract structured fields (parties, line items, values, HS codes if present) from a commercial invoice, packing list, or similar customs document — PDF or image URL, no OCR setup needed."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "documentUrl": "https://example.com/invoice.pdf"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "lineItems": [],
              "documentType": "commercial invoice",
              "invoiceNumber": "INV-1001"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "documentUrl"
                  ],
                  "properties": {
                    "documentUrl": {
                      "type": "string",
                      "description": "URL to a PDF or image of the document"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "currency": {
                      "type": "string"
                    },
                    "consignee": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "address": {
                          "type": "string"
                        },
                        "country": {
                          "type": "string"
                        }
                      }
                    },
                    "consignor": {
                      "type": "object",
                      "properties": {
                        "name": {
                          "type": "string"
                        },
                        "address": {
                          "type": "string"
                        },
                        "country": {
                          "type": "string"
                        }
                      }
                    },
                    "incoterms": {
                      "type": "string"
                    },
                    "lineItems": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "hsCode": {
                            "type": "string"
                          },
                          "quantity": {
                            "type": "number"
                          },
                          "weightKg": {
                            "type": "number"
                          },
                          "unitValue": {
                            "type": "number"
                          },
                          "totalValue": {
                            "type": "number"
                          },
                          "description": {
                            "type": "string"
                          },
                          "countryOfOrigin": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "totalValue": {
                      "type": "number"
                    },
                    "invoiceDate": {
                      "type": "string"
                    },
                    "documentType": {
                      "type": "string",
                      "description": "e.g. commercial invoice, packing list, bill of lading"
                    },
                    "invoiceNumber": {
                      "type": "string"
                    },
                    "totalWeightKg": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xAd586c246B75982EC16c6a5EFE4488222965408f",
        "amount": "2000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "http://api.jomofagan.com/read",
      "mimeType": "application/json",
      "description": "Fetch a URL and return clean, readable markdown + plain text with boilerplate (nav/ads/footers) stripped out."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "url": "https://example.com/article"
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "url": "https://example.com/article",
              "text": "Example ...",
              "title": "Example",
              "markdown": "# Example\n..."
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "url"
                  ],
                  "properties": {
                    "url": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object",
                  "properties": {
                    "url": {
                      "type": "string"
                    },
                    "text": {
                      "type": "string"
                    },
                    "title": {
                      "type": "string"
                    },
                    "markdown": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts share the 90d window selected here. Every series is also served as JSON at /api/v1/services/x402-extract-api/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
08-03 · uptime 100.0% · 158ms avg08-0308-03
90d UPTIME 100%
RESPONSE TIME
08-03 · 158ms avg08-03 · 158ms avg08-0308-03
AVG RESP 174ms
PRICE (captured 402, USD)
building price history ($0.01)

Median across 4 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
building assessment history (1 day so far)
VOLUME (on-chain settlement, USD)
no on-chain volume yet
DISTINCT BUYERS
no distinct buyers yet

COMPLIANCE

14/14 checks pass · grade A
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS
  • declares the current x402 version (2)
  • EIP-712 domain parameters present on every EVM entry
  • x402 v2 envelope delivered in the payment-required header

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (7) · click to expand
TIME STATUS RESP
● SLOW 272ms
● OK 92ms
● OK 120ms
● OK 210ms
● OK 153ms
● OK 100ms
● SLOW 274ms

EMBED THIS BADGE

Show that x402-extract-api is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

x402-extract-api listed on x402-list
status
x402-extract-api uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/x402-extract-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/x402-extract-api.svg" alt="x402-extract-api listed on x402-list" height="28">
</a>
// Markdown
[![x402-extract-api on x402-list](https://x402-list.com/badge/x402-extract-api.svg)](https://x402-list.com/services/x402-extract-api?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/x402-extract-api?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/x402-extract-api.svg?data=uptime" alt="x402-extract-api uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]