{
  "x402Version": 2,
  "id": 7826,
  "slug": "7826",
  "resource": "https://loonie-toll.onrender.com/edgar",
  "description": "SEC filing profile for a public company: identity, recent filings, and whether it is current with its reporting.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "DUPiupXtuox38dcGoXUKer5mAydCzmaHjrbQ66qeEm8s",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0xb531320805C5BED1D46AEaDcF4F008FDF172DBDa",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "ticker": "AAPL"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "company": {
              "cik": "320193",
              "entityType": "operating",
              "exchanges": [
                "Nasdaq"
              ],
              "fiscalYearEnd": "0926",
              "formerNames": [
                "APPLE INC",
                "APPLE COMPUTER INC",
                "…1 more"
              ],
              "industry": "Electronic Computers",
              "name": "Apple Inc.",
              "sic": "3571",
              "stateOfIncorporation": "CA",
              "tickers": [
                "AAPL"
              ],
              "website": null
            },
            "disclaimer": "Advisory only, provided as is without warranty of accuracy or completeness. Filing activity is not a judgement about a company's financial health, and this is not investment advice. Read the filings t…",
            "filingActivity": {
              "daysSinceLastFiling": 5,
              "lastAnnualReport": "2025-10-31",
              "lastFiledOn": "2026-08-27",
              "lastQuarterlyReport": "2026-07-31"
            },
            "otherMatches": [],
            "query": {
              "cik": "320193",
              "company": null,
              "matchedBy": "ticker",
              "ticker": "AAPL"
            },
            "reasons": [
              "Apple Inc. last filed 5 day(s) ago — actively reporting.",
              "Most recent annual report filed 2025-10-31.",
              "…1 more"
            ],
            "recentFilings": [
              {
                "accessionNumber": "0001140361-26-034741",
                "description": "FORM 4",
                "filedOn": "2026-08-27",
                "form": "4",
                "periodOf": "2026-08-25",
                "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126034741/xslF345X06/form4.xml"
              },
              {
                "accessionNumber": "0001140361-26-033928",
                "description": "FORM 4",
                "filedOn": "2026-08-20",
                "form": "4",
                "periodOf": "2026-08-18",
                "url": "https://www.sec.gov/Archives/edgar/data/320193/000114036126033928/xslF345X06/form4.xml"
              }
            ],
            "retrievedAt": "2026-08-31T21:30:24.810Z",
            "source": "SEC EDGAR submissions API",
            "verdict": "CURRENT_FILER"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "properties": {
                  "cik": {
                    "description": "SEC Central Index Key",
                    "type": "string"
                  },
                  "company": {
                    "description": "Company name or part of it",
                    "type": "string"
                  },
                  "limit": {
                    "description": "Recent filings to return, default 10",
                    "type": "integer"
                  },
                  "ticker": {
                    "description": "Stock ticker, e.g. AAPL",
                    "type": "string"
                  }
                },
                "required": [],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "company": {
                    "properties": {
                      "cik": {
                        "type": "string"
                      },
                      "entityType": {
                        "type": "string"
                      },
                      "exchanges": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "fiscalYearEnd": {
                        "type": "string"
                      },
                      "formerNames": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "industry": {
                        "type": "string"
                      },
                      "name": {
                        "type": "string"
                      },
                      "sic": {
                        "type": "string"
                      },
                      "stateOfIncorporation": {
                        "type": "string"
                      },
                      "tickers": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "website": {
                        "type": "null"
                      }
                    },
                    "type": "object"
                  },
                  "disclaimer": {
                    "type": "string"
                  },
                  "filingActivity": {
                    "properties": {
                      "daysSinceLastFiling": {
                        "type": "integer"
                      },
                      "lastAnnualReport": {
                        "type": "string"
                      },
                      "lastFiledOn": {
                        "type": "string"
                      },
                      "lastQuarterlyReport": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "otherMatches": {
                    "type": "array"
                  },
                  "query": {
                    "properties": {
                      "cik": {
                        "type": "string"
                      },
                      "company": {
                        "type": "null"
                      },
                      "matchedBy": {
                        "type": "string"
                      },
                      "ticker": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "reasons": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "recentFilings": {
                    "items": {
                      "properties": {
                        "accessionNumber": {
                          "type": "string"
                        },
                        "description": {
                          "type": [
                            "null",
                            "string"
                          ]
                        },
                        "filedOn": {
                          "type": "string"
                        },
                        "form": {
                          "type": "string"
                        },
                        "periodOf": {
                          "type": [
                            "null",
                            "string"
                          ]
                        },
                        "url": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "retrievedAt": {
                    "type": "string"
                  },
                  "source": {
                    "type": "string"
                  },
                  "verdict": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "loonie-toll.onrender.com",
  "lastUpdated": "2026-09-16T21:13:24.718Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-16T21:13:24.502Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "loonie-toll.onrender.com",
    "manifest_name": "loonie-toll.onrender.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"
  }
}