Free overview - try before you buy. Returns basic info about a company by ticker.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ticker": {
"default": "AAPL",
"description": "Stock ticker symbol",
"type": "string"
}
},
"required": [
"ticker"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/overview/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"ticker": "<Stock ticker symbol>"
}
}
'
Full company profile by ticker - includes business info, fiscal year, entity type, addresses
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker symbol (e.g., AAPL, MSFT, NVDA)"
}
},
"required": [
"ticker"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/company/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"ticker": "<Stock ticker symbol (e.g., AAPL, MSFT, NVDA)>"
}
}
'
Recent SEC filings by ticker with optional form type filter (10-K, 10-Q, 8-K, etc.)
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker symbol"
},
"formType": {
"description": "Filter by form type: 10-K, 10-Q, 8-K, 4, DEF 14A, etc.",
"type": "string"
},
"limit": {
"default": 20,
"description": "Max filings to return (1-100)",
"type": "number"
}
},
"required": [
"ticker",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/filings/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"ticker": "<Stock ticker symbol>",
"limit": 0
}
}
'
Search company tickers by name
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Company name to search for"
},
"limit": {
"default": 10,
"description": "Max results (1-50)",
"type": "number"
}
},
"required": [
"query",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/search/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"query": "<Company name to search for>",
"limit": 0
}
}
'
Recent insider trading activity (Form 4 filings) for a company
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker symbol"
},
"limit": {
"default": 10,
"description": "Max Form 4 filings (1-50)",
"type": "number"
}
},
"required": [
"ticker",
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/insider-trades/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"ticker": "<Stock ticker symbol>",
"limit": 0
}
}
'
Comprehensive company report - profile, recent filings by type, and insider activity
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"ticker": {
"type": "string",
"description": "Stock ticker symbol"
}
},
"required": [
"ticker"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/report/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"ticker": "<Stock ticker symbol>"
}
}
'
Payment analytics summary
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"description": "Time window in ms",
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/analytics/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'
analytics-transactions
Invoke
Recent payment transactions
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
},
"limit": {
"default": 50,
"type": "number"
}
},
"required": [
"limit"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/analytics-transactions/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"limit": 0
}
}
'
Export payment data as CSV
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"windowMs": {
"type": "number"
}
},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://sec-filings-agent-production.up.railway.app/entrypoints/analytics-csv/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"windowMs": 0
}
}
'