Skip to main content
POST
/
api
/
finviz
/
insider-trades
/finviz/insider-trades
curl --request POST \
  --url https://api.anysite.io/api/finviz/insider-trades \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "transaction_type": "all"
}
'
[
  {
    "ticker": "<string>",
    "@type": "@finviz_insider_trade",
    "owner": "<string>",
    "relationship": "<string>",
    "date": "<string>",
    "transaction": "<string>",
    "cost": 123,
    "share_count": 123,
    "value": 123,
    "share_total_count": 123,
    "sec_form_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Maximum number of insider trades to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
transaction_type
enum<string>
default:all

Filter by transaction direction

Available options:
all,
buy,
sale

Response

Successful Response

ticker
string
required
@type
string
default:@finviz_insider_trade
owner
string | null
relationship
string | null
date
string | null
transaction
string | null
cost
number | null
share_count
integer | null
value
integer | null
share_total_count
integer | null
sec_form_url
string | null