apiV1FilerGet
Retrieve a filer by CIK.
Returns a filer with the specified CIK (Central Index Key) and associated company names.
/api/v1/filer
Usage and SDK Samples
curl -X GET \
-H "Accept: application/json" \
"https://forms13f.com/api/v1/filer?cik=1067983"
from __future__ import print_statement
import time
import forms13f
from forms13f.rest import ApiException
from pprint import pprint
# Create an instance of the API class
api_instance = forms13f.DefaultApi()
cik = 1067983 # String | The Central Index Key (CIK) of the filer. (default to null)
try:
# Retrieve a filer by CIK.
api_response = api_instance.api_v1_filer_get(cik)
pprint(api_response)
except ApiException as e:
print("Exception when calling DefaultApi->apiV1FilerGet: %s\n" % e)
Scopes
Parameters
Name | Description |
---|---|
cik* |
String
The Central Index Key (CIK) of the filer.
Required
|