{
  "x402Version": 2,
  "id": 6815,
  "slug": "6815",
  "resource": "https://ausca.com/v1/analyze-document",
  "description": "Extract normalized forms, tables, signatures, or layout from a document.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x26572ff23c6c52bfb1a69cb0c9114a8be443b422",
      "asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
      "amount": "300000",
      "maxTimeoutSeconds": 60
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "idempotency_key": "ausca-x402-discovery-example",
            "input": {
              "artifact": {
                "artifact_ref": "runx:artifact:sha256:4444444444444444444444444444444444444444444444444444444444444444",
                "content_digest": "sha256:5555555555555555555555555555555555555555555555555555555555555555",
                "media_type": "application/pdf"
              },
              "feature_types": [
                "FORMS",
                "TABLES"
              ]
            },
            "input_schema_digest": "sha256:7093216a29925031972d61a7ab5f6013936aac9f81c3c54f51a00a3fef66759b",
            "offer_id": "document.analysis",
            "offer_revision": "analysis-bytes-r6",
            "offer_revision_digest": "sha256:f386e8d45a6c6ae8b89ef90ba8ce66ec869e6d19885777aa9aac20411c6ffc4c",
            "output_schema_digest": "sha256:837364a98ae8c7dad1a13f7baf91279f71bb75336727483d7a8ad86c4ad17527"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "inspect_url": "/v1/invocations/ausca-discovery-example",
            "invocation": {
              "invocation_id": "ausca-discovery-example",
              "offer_revision_digest": "sha256:f386e8d45a6c6ae8b89ef90ba8ce66ec869e6d19885777aa9aac20411c6ffc4c",
              "output": {
                "pages": [
                  {
                    "artifact_ref": "runx:artifact:sha256:6666666666666666666666666666666666666666666666666666666666666666",
                    "content_digest": "sha256:7777777777777777777777777777777777777777777777777777777777777777",
                    "page_index": 1,
                    "size_bytes": 1024
                  }
                ],
                "schema": "ausca.document_analysis.manifest.v1",
                "source_digest": "sha256:5555555555555555555555555555555555555555555555555555555555555555"
              },
              "output_digest": "sha256:082400ba83dac1dfdf19d80f2401dc4d8d9d66870a8629a73bced51c79754792",
              "receipt_ref": {
                "public_url": "https://runx.ai/r/0000000000000000000000000000000000000000000000000000000000000000",
                "type": "receipt",
                "uri": "runx:receipt:discovery-example"
              },
              "state": "succeeded",
              "updated_at": "2026-01-01T00:00:00Z"
            },
            "status": "accepted"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "idempotency_key": {
                    "maxLength": 128,
                    "minLength": 16,
                    "type": "string"
                  },
                  "input": {
                    "additionalProperties": false,
                    "properties": {
                      "artifact": {
                        "allOf": [
                          {
                            "additionalProperties": false,
                            "properties": {
                              "artifact_ref": {
                                "maxLength": 512,
                                "minLength": 1,
                                "type": "string"
                              },
                              "content_digest": {
                                "pattern": "^sha256:[a-f0-9]{64}$",
                                "type": "string"
                              },
                              "media_type": {
                                "maxLength": 200,
                                "minLength": 1,
                                "type": "string"
                              }
                            },
                            "required": [
                              "artifact_ref",
                              "content_digest",
                              "media_type"
                            ],
                            "type": "object"
                          },
                          {
                            "properties": {
                              "media_type": {
                                "enum": [
                                  "application/pdf",
                                  "image/jpeg",
                                  "image/png",
                                  "image/tiff"
                                ]
                              }
                            }
                          }
                        ]
                      },
                      "feature_types": {
                        "items": {
                          "enum": [
                            "FORMS",
                            "TABLES",
                            "SIGNATURES",
                            "LAYOUT"
                          ],
                          "type": "string"
                        },
                        "maxItems": 4,
                        "minItems": 1,
                        "type": "array",
                        "uniqueItems": true
                      }
                    },
                    "required": [
                      "artifact",
                      "feature_types"
                    ],
                    "type": "object"
                  },
                  "input_schema_digest": {
                    "const": "sha256:7093216a29925031972d61a7ab5f6013936aac9f81c3c54f51a00a3fef66759b"
                  },
                  "offer_id": {
                    "const": "document.analysis"
                  },
                  "offer_revision": {
                    "const": "analysis-bytes-r6"
                  },
                  "offer_revision_digest": {
                    "const": "sha256:f386e8d45a6c6ae8b89ef90ba8ce66ec869e6d19885777aa9aac20411c6ffc4c"
                  },
                  "output_schema_digest": {
                    "const": "sha256:837364a98ae8c7dad1a13f7baf91279f71bb75336727483d7a8ad86c4ad17527"
                  }
                },
                "required": [
                  "offer_id",
                  "offer_revision",
                  "offer_revision_digest",
                  "input_schema_digest",
                  "output_schema_digest",
                  "input",
                  "idempotency_key"
                ],
                "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": {
                "properties": {
                  "inspect_url": {
                    "pattern": "^/v1/invocations/[A-Za-z0-9][A-Za-z0-9._:-]*$",
                    "type": "string"
                  },
                  "invocation": {
                    "properties": {
                      "invocation_id": {
                        "maxLength": 128,
                        "minLength": 1,
                        "pattern": "^[A-Za-z0-9][A-Za-z0-9._:-]*$",
                        "type": "string"
                      },
                      "offer_revision_digest": {
                        "const": "sha256:f386e8d45a6c6ae8b89ef90ba8ce66ec869e6d19885777aa9aac20411c6ffc4c"
                      },
                      "output": {
                        "additionalProperties": false,
                        "properties": {
                          "pages": {
                            "items": {
                              "additionalProperties": false,
                              "properties": {
                                "artifact_ref": {
                                  "maxLength": 512,
                                  "minLength": 1,
                                  "type": "string"
                                },
                                "content_digest": {
                                  "pattern": "^sha256:[a-f0-9]{64}$",
                                  "type": "string"
                                },
                                "page_index": {
                                  "maximum": 32,
                                  "minimum": 1,
                                  "type": "integer"
                                },
                                "size_bytes": {
                                  "maximum": 26214400,
                                  "minimum": 1,
                                  "type": "integer"
                                }
                              },
                              "required": [
                                "page_index",
                                "artifact_ref",
                                "content_digest",
                                "size_bytes"
                              ],
                              "type": "object"
                            },
                            "maxItems": 32,
                            "minItems": 1,
                            "type": "array"
                          },
                          "schema": {
                            "const": "ausca.document_analysis.manifest.v1"
                          },
                          "source_digest": {
                            "pattern": "^sha256:[a-f0-9]{64}$",
                            "type": "string"
                          }
                        },
                        "required": [
                          "schema",
                          "source_digest",
                          "pages"
                        ],
                        "type": "object"
                      },
                      "output_digest": {
                        "pattern": "^sha256:[a-f0-9]{64}$",
                        "type": "string"
                      },
                      "receipt_ref": {
                        "properties": {
                          "public_url": {
                            "format": "uri",
                            "maxLength": 2048,
                            "pattern": "^https://[^?#]+/r/[a-f0-9]{64}$",
                            "type": "string"
                          },
                          "type": {
                            "const": "receipt"
                          },
                          "uri": {
                            "maxLength": 512,
                            "minLength": 1,
                            "type": "string"
                          }
                        },
                        "required": [
                          "type",
                          "uri"
                        ],
                        "type": "object"
                      },
                      "state": {
                        "enum": [
                          "admitted",
                          "running",
                          "succeeded",
                          "failed",
                          "cancellation_requested",
                          "cancelled"
                        ],
                        "type": "string"
                      },
                      "updated_at": {
                        "format": "date-time",
                        "type": "string"
                      }
                    },
                    "required": [
                      "invocation_id",
                      "offer_revision_digest",
                      "state",
                      "updated_at"
                    ],
                    "type": "object"
                  },
                  "status": {
                    "const": "accepted"
                  }
                },
                "required": [
                  "status",
                  "invocation",
                  "inspect_url"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "ausca.com",
  "lastUpdated": "2026-09-18T13:08:54.3Z",
  "quality": {
    "calls30d": 16,
    "uniquePayers30d": 6,
    "lastCalledAt": "2026-09-18T13:08:53.128Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "ausca.com",
    "manifest_name": "ausca.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"
  }
}