{
  "x402Version": 2,
  "id": 1060,
  "slug": "1060",
  "resource": "https://agents.samedaydesk.com/extract/batch",
  "description": "Batch extract one to five public HTTPS URLs into bounded structured fields. One flat 0.01 USDC (10000 atomic Base USDC) quote buys a bounded attempt with hard request, byte, and wall-time ceilings. Charge is for the attempt, not a guarantee that every URL succeeds.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8904dF3DE6DFEe6a7C8cc38619d2f17806213Cee",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "fields": [
              "title",
              "description",
              "headings"
            ],
            "urls": [
              "https://example.com/"
            ]
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "accounting": {
              "bytes": 528,
              "failed": 0,
              "partial": 0,
              "requests": 1,
              "retries": 0,
              "skippedDuplicate": 0,
              "succeeded": 1,
              "unknown": 0,
              "wallMs": 12
            },
            "boundary": {
              "automaticRetries": false,
              "guaranteedUrlSuccess": false,
              "introductoryPrice": true,
              "sourceFetchBeforeAuthorization": false
            },
            "charged": true,
            "costInputs": {
              "admittedBodyBytes": 528,
              "hostingCosts": "unknown",
              "modelCosts": "none",
              "monetaryMargin": null,
              "note": "accounting.bytes is uncompressed admitted application body bytes, including unresolved reservations, not socket wire billing",
              "requests": 1,
              "wallMs": 12
            },
            "jobId": "0000000000000000000000000000000000000000000000000000000000000000",
            "jobStatus": "completed",
            "ok": true,
            "partial": false,
            "product": "samedaydesk-extract-batch",
            "quote": {
              "amountAtomic": "10000",
              "displayUsdc": "0.01",
              "meaning": "Introductory flat 0.01 USDC batch quote for a bounded 1-5 URL attempt. Not a per-URL success promise."
            },
            "schemaVersion": "samedaydesk.extract-batch.v0",
            "sources": [
              {
                "data": {
                  "description": null,
                  "headings": {
                    "h1": [
                      "Example Domain"
                    ],
                    "h2": []
                  },
                  "title": "Example Domain"
                },
                "error": null,
                "id": "item-001",
                "notes": [],
                "provenance": {
                  "finalUrl": "https://example.com/",
                  "httpStatus": 200,
                  "transport": "live"
                },
                "source": "https://example.com/",
                "status": "success"
              }
            ],
            "stopReason": null
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "fields": {
                    "description": "Optional bounded subset of structured extraction fields.",
                    "items": {
                      "enum": [
                        "title",
                        "description",
                        "canonical",
                        "lang",
                        "openGraph",
                        "twitter",
                        "jsonLd",
                        "headings",
                        "links",
                        "text",
                        "aiReadiness"
                      ],
                      "type": "string"
                    },
                    "maxItems": 11,
                    "minItems": 1,
                    "type": "array",
                    "uniqueItems": true
                  },
                  "urls": {
                    "description": "One to five public HTTPS URLs. Charge is a bounded attempt, not per-URL success.",
                    "items": {
                      "format": "uri",
                      "maxLength": 2048,
                      "type": "string"
                    },
                    "maxItems": 5,
                    "minItems": 1,
                    "type": "array"
                  }
                },
                "required": [
                  "urls"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "additionalProperties": false,
                "properties": {
                  "accounting": {
                    "type": "object"
                  },
                  "boundary": {
                    "type": "object"
                  },
                  "charged": {
                    "type": "boolean"
                  },
                  "costInputs": {
                    "type": "object"
                  },
                  "error": {
                    "type": "string"
                  },
                  "jobId": {
                    "pattern": "^[a-f0-9]{64}$",
                    "type": "string"
                  },
                  "jobStatus": {
                    "enum": [
                      "running",
                      "completed",
                      "completed_with_unknown",
                      "stopped",
                      "interrupted"
                    ],
                    "type": "string"
                  },
                  "ok": {
                    "type": "boolean"
                  },
                  "partial": {
                    "type": "boolean"
                  },
                  "product": {
                    "const": "samedaydesk-extract-batch",
                    "type": "string"
                  },
                  "quote": {
                    "properties": {
                      "amountAtomic": {
                        "const": "10000",
                        "type": "string"
                      },
                      "displayUsdc": {
                        "const": "0.01",
                        "type": "string"
                      },
                      "meaning": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "amountAtomic",
                      "displayUsdc",
                      "meaning"
                    ],
                    "type": "object"
                  },
                  "schemaVersion": {
                    "const": "samedaydesk.extract-batch.v0",
                    "type": "string"
                  },
                  "sources": {
                    "items": {
                      "properties": {
                        "data": {
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "error": {
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "finalUrl": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "httpStatus": {
                          "type": [
                            "integer",
                            "null"
                          ]
                        },
                        "id": {
                          "type": "string"
                        },
                        "notes": {
                          "type": "array"
                        },
                        "provenance": {
                          "type": [
                            "object",
                            "null"
                          ]
                        },
                        "source": {
                          "type": "string"
                        },
                        "status": {
                          "enum": [
                            "pending",
                            "success",
                            "partial",
                            "failure",
                            "unknown",
                            "skipped_duplicate"
                          ],
                          "type": "string"
                        }
                      },
                      "required": [
                        "id",
                        "source",
                        "status",
                        "data",
                        "notes",
                        "error",
                        "provenance"
                      ],
                      "type": "object"
                    },
                    "maxItems": 5,
                    "minItems": 1,
                    "type": "array"
                  },
                  "stopReason": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "required": [
                  "ok",
                  "product",
                  "schemaVersion",
                  "quote",
                  "jobId",
                  "jobStatus",
                  "stopReason",
                  "partial",
                  "sources",
                  "accounting",
                  "costInputs",
                  "charged",
                  "boundary"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    },
    "builder-code": {
      "info": {
        "a": "bc_lqj09bnf"
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "additionalProperties": false,
        "properties": {
          "a": {
            "description": "App builder code",
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          },
          "s": {
            "description": "Service builder codes",
            "items": {
              "pattern": "^[a-z0-9_]{1,32}$",
              "type": "string"
            },
            "type": "array"
          },
          "w": {
            "description": "Wallet builder code",
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          }
        },
        "type": "object"
      }
    },
    "offer-receipt": {
      "info": {
        "offers": [
          {
            "acceptIndex": 0,
            "format": "eip712",
            "payload": {
              "amount": "10000",
              "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
              "network": "eip155:8453",
              "payTo": "0x8904dF3DE6DFEe6a7C8cc38619d2f17806213Cee",
              "resourceUrl": "https://agents.samedaydesk.com/extract/batch",
              "scheme": "exact",
              "validUntil": 1788846446,
              "version": 1
            },
            "signature": "0xb8bb67a76bb57f224158776e09ef7b0651ef8b79d2825b540b08385ebbd5043158926d39edd78c5b2aeeb3add94c4592b0ac93bab06d70d5350141ac99e40fd61b"
          }
        ]
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "offers": {
            "items": {
              "properties": {
                "acceptIndex": {
                  "type": "integer"
                },
                "format": {
                  "type": "string"
                },
                "payload": {
                  "properties": {
                    "amount": {
                      "type": "string"
                    },
                    "asset": {
                      "type": "string"
                    },
                    "network": {
                      "type": "string"
                    },
                    "payTo": {
                      "type": "string"
                    },
                    "resourceUrl": {
                      "type": "string"
                    },
                    "scheme": {
                      "type": "string"
                    },
                    "validUntil": {
                      "type": "integer"
                    },
                    "version": {
                      "type": "integer"
                    }
                  },
                  "required": [
                    "version",
                    "resourceUrl",
                    "scheme",
                    "network",
                    "asset",
                    "payTo",
                    "amount"
                  ],
                  "type": "object"
                },
                "signature": {
                  "type": "string"
                }
              },
              "required": [
                "format",
                "signature"
              ],
              "type": "object"
            },
            "type": "array"
          }
        },
        "required": [
          "offers"
        ],
        "type": "object"
      }
    },
    "payment-identifier": {
      "info": {
        "required": true
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "id": {
            "maxLength": 128,
            "minLength": 16,
            "pattern": "^[a-zA-Z0-9_-]+$",
            "type": "string"
          },
          "required": {
            "type": "boolean"
          }
        },
        "required": [
          "required"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar",
    "builder-code",
    "offer-receipt",
    "payment-identifier"
  ],
  "sourceHost": "agents.samedaydesk.com",
  "lastUpdated": "2026-09-08T05:42:27.016Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-08T05:42:26.759Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "agents.samedaydesk.com",
    "manifest_name": "agents.samedaydesk.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}