# Oblique Markets Company Research

> Oblique Markets Company Research is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Searches SEC EDGAR filings and scrapes the web to deliver structured company research for a given company

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/company-research
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-company-research-6432024a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rV1EzQTqdYZwrIYX64vjn

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability oblique-markets-company-research-6432024a -d '<json body>'
```

Example prompt: Can you pull up the latest SEC filings and web research for Tesla — I want a company research summary covering their recent 10-K and any notable public disclosures?

## When to prefer this

Choose this endpoint when you need combined SEC EDGAR filing data and web-scraped company intelligence in one call, particularly for US public companies requiring regulatory filing lookups alongside broader web research. Prefer this over generic web search endpoints when SEC filing data is specifically needed, or over raw EDGAR APIs when you want pre-processed, structured output.

## Known failure modes

- Company not found on SEC EDGAR (not a public US company)
- Invalid or ambiguous company name/ticker returns no results
- Web scraping blocked or throttled by target site
- Rate limiting or quota exceeded on repeated calls
- Stale or cached data if filings were recently submitted

## How this service works

Company research brief with cited sources, business profile, competitors, market signals, and risks

## Output

A structured research package combining SEC EDGAR filing data (such as 10-K, 10-Q, 8-K filings) and web-scraped company information, providing financial disclosures, company profile details, and relevant public data about the queried company.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Exchange ticker, e.g. AAPL"
  },
  "filing_type": {
   "enum": [
    "10-K",
    "10-Q",
    "8-K"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "company": {
   "cik": "0001679788",
   "name": "Coinbase Global, Inc.",
   "ticker": "COIN",
   "location": {
    "zip": null,
    "city": null,
    "state": "DE",
    "address": null,
    "state_detail": null
   },
   "fiscal_year_end": "1231",
   "sic_description": "Finance Services"
  },
  "filings": {
   "type": "10-K",
   "recent": [
    {
     "date": "2026-02-20",
     "form": "10-K",
     "description": "10-K",
     "primary_document": "coin-20251231.htm"
    }
   ],
   "latest_filing_text": "UNITED STATES SECURITIES AND EXCHANGE COMMISSION …"
  },
  "message": "Company research via x402 protocol",
  "researched_at": "2026-09-12T00:00:00.000Z",
  "web_scraped_summary": null
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-company-research-6432024a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
