mirrored listing x402 eip155:8453

Subsidiary names and jurisdictions extracted from any public company's latest annual-repor

Subsidiary names and jurisdictions extracted from any public company's latest annual-report Exhibit 21, with the source exhibit URL for verification. One call replaces locating and parsing EX-21 filings.

Do you run answerpool.io? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
50000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated

Provider

answerpool.io · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xb3ba3Ca99F9742b32fC527CF62688C83b39AED8c",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "50000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "ticker": "AAPL"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "accession": "0000320193-25-000123",
          "as_of": "2026-09-02T22:00:00Z",
          "cik": "0000320193",
          "count": 1,
          "filed": "2025-11-01",
          "name": "Apple Inc.",
          "note": null,
          "source_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000123/ex21.htm",
          "subsidiaries": [
            {
              "jurisdiction": "Ireland",
              "name": "Apple Operations International Ltd."
            }
          ]
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET",
                "HEAD",
                "DELETE"
              ],
              "type": "string"
            },
            "queryParams": {
              "additionalProperties": false,
              "properties": {
                "cik": {
                  "anyOf": [
                    {
                      "maxLength": 10,
                      "pattern": "^\\d{1,10}$",
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null,
                  "title": "Cik"
                },
                "limit": {
                  "default": 200,
                  "maximum": 500,
                  "minimum": 1,
                  "title": "Limit",
                  "type": "integer"
                },
                "ticker": {
                  "anyOf": [
                    {
                      "maxLength": 12,
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "default": null,
                  "title": "Ticker"
                }
              },
              "title": "SubsIn",
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "accession": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Accession"
                },
                "as_of": {
                  "title": "As Of",
                  "type": "string"
                },
                "cik": {
                  "title": "Cik",
                  "type": "string"
                },
                "count": {
                  "title": "Count",
                  "type": "integer"
                },
                "disclaimer": {
                  "default": "Entity relationships extracted from public SEC filings; heuristic text/index joins, not a legal governance or ownership record. Not investment advice.",
                  "title": "Disclaimer",
                  "type": "string"
                },
                "filed": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Filed"
                },
                "method_id": {
                  "default": "sec_graph_rules_v1",
                  "title": "Method Id",
                  "type": "string"
                },
                "name": {
                  "title": "Name",
                  "type": "string"
                },
                "note": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Note"
                },
                "source_url": {
                  "anyOf": [
                    {
                      "type": "string"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Source Url"
                },
                "subsidiaries": {
                  "items": {
                    "properties": {
                      "jurisdiction": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "null"
                          }
                        ],
                        "title": "Jurisdiction"
                      },
                      "name": {
                        "title": "Name",
                        "type": "string"
                      }
                    },
                    "required": [
                      "name",
                      "jurisdiction"
                    ],
                    "title": "SubsidiaryRow",
                    "type": "object"
                  },
                  "title": "Subsidiaries",
                  "type": "array"
                }
              },
              "required": [
                "as_of",
                "cik",
                "name",
                "accession",
                "filed",
                "source_url",
                "note",
                "count",
                "subsidiaries"
              ],
              "title": "SubsOutput",
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://answerpool.io/v1/graph/subsidiaries"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://answerpool.io/v1/graph/subsidiaries");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://answerpool.io/v1/graph/subsidiaries")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/7785.json, and this resource appears in /discovery/resources and /discovery/search.