Skip to main content
POST
/
api
/
new_york
/
companies
/
filings
/new_york/companies/filings
curl --request POST \
  --url https://api.anysite.io/api/new_york/companies/filings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dos_id": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "file_number": "<string>",
    "@type": "@new_york_filing",
    "document_type": "<string>",
    "file_date": "<string>",
    "cert_code": "<string>",
    "amendment_description": "<string>",
    "page_count": 123,
    "filing_doc_guid": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dos_id
string
required

New York DOS ID (numeric entity identifier)

Minimum string length: 1
Example:

"1453447"

count
integer
required

Max number of filings to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

file_number
string
required
@type
string
default:@new_york_filing
document_type
string | null
file_date
string | null
cert_code
string | null
amendment_description
string | null
page_count
integer | null
filing_doc_guid
string | null