Look up an insider by name or owner CIK and get every issuer they file SEC ownership forms
Look up an insider by name or owner CIK and get every issuer they file SEC ownership forms for — roles, filing counts, first/last seen. The person node of the entity graph in one call.
20000 (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": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"q": "INSIDER"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-09-02T22:00:00Z",
"count": 1,
"index_started": "2026-08-27T00:00:00",
"persons": [
{
"issuers": [
{
"cik": "0000096223",
"company": "JEFFERIES FINANCIAL GROUP INC.",
"filings": 4,
"first_seen": "2026-08-27T12:00:00",
"last_seen": "2026-08-29T20:11:03",
"role": "officer (CEO)",
"ticker": "JEF"
}
],
"name": "HANDLER RICHARD B",
"owner_cik": "0001211677"
}
]
},
"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": {
"days": {
"default": 365,
"maximum": 3650,
"minimum": 7,
"title": "Days",
"type": "integer"
},
"limit": {
"default": 25,
"maximum": 100,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"owner_cik": {
"anyOf": [
{
"maxLength": 10,
"pattern": "^\\d{1,10}$",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Owner Cik"
},
"q": {
"anyOf": [
{
"maxLength": 80,
"minLength": 2,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Insider name substring.",
"title": "Q"
}
},
"title": "PersonIn",
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"as_of": {
"title": "As Of",
"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"
},
"index_started": {
"title": "Index Started",
"type": "string"
},
"method_id": {
"default": "sec_graph_rules_v1",
"title": "Method Id",
"type": "string"
},
"persons": {
"items": {
"properties": {
"issuers": {
"items": {
"properties": {
"cik": {
"title": "Cik",
"type": "string"
},
"company": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Company"
},
"filings": {
"title": "Filings",
"type": "integer"
},
"first_seen": {
"title": "First Seen",
"type": "string"
},
"last_seen": {
"title": "Last Seen",
"type": "string"
},
"role": {
"title": "Role",
"type": "string"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Ticker"
}
},
"required": [
"cik",
"ticker",
"company",
"role",
"filings",
"first_seen",
"last_seen"
],
"title": "PersonIssuer",
"type": "object"
},
"title": "Issuers",
"type": "array"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Name"
},
"owner_cik": {
"title": "Owner Cik",
"type": "string"
}
},
"required": [
"owner_cik",
"name",
"issuers"
],
"title": "PersonRow",
"type": "object"
},
"title": "Persons",
"type": "array"
}
},
"required": [
"as_of",
"index_started",
"count",
"persons"
],
"title": "PersonOutput",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://answerpool.io/v1/graph/person" # -> 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/person");
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/person")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7790.json, and this resource appears in /discovery/resources and /discovery/search.