Testnet one-shot SEC 8-K watch for 1–30 days
Testnet one-shot SEC 8-K watch for 1–30 days. The callback is operator-owned; notifications do not reach your application. Successful JSON returns watcher_id, status, payer, payment_tx and network. Check status with GET https://digital-micro-arbitrage-v0-staging.joan-rnandez.workers.dev/v0/watch/{watcher_id}. No filing is guaranteed. If payment reconciliation is pending, retain the receipt and check status; do not purchase again.
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://digital-micro-arbitrage-v0-production.up.railway.app/v0/watch/sec
| Category | Everything else |
|---|---|
| Provider host | digital-micro-arbitrage-v0-production.up.railway.app |
| Networks | eip155:84532 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 0 from 0 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": {
"callback_url": "https://digital-micro-arbitrage-v0-staging.joan-rnandez.workers.dev/internal/test/callback",
"company": "ORCL",
"duration_days": 7,
"form": "8-K"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"callback_url": {
"const": "https://digital-micro-arbitrage-v0-staging.joan-rnandez.workers.dev/internal/test/callback",
"description": "Fixed operator test receiver; does not notify the buyer application",
"format": "uri",
"type": "string"
},
"company": {
"description": "SEC ticker symbol or CIK, for example ORCL or 0001341439",
"type": "string"
},
"duration_days": {
"description": "Number of days the one-shot watcher remains active",
"maximum": 30,
"minimum": 1,
"type": "integer"
},
"form": {
"description": "SEC filing form to watch, for example 8-K",
"enum": [
"8-K"
],
"type": "string"
}
},
"required": [
"company",
"form",
"callback_url",
"duration_days"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
}
}