Companies
Documents
Retrieve a list of available documents for a company. After finding a document of interest, use the Create Order API to order a copy of the document.
get/companies/{kyckrId}/documents
Query parameters
continuationKeystring
Opaque token returned in the previous response. When provided, the API returns the next page of documents (e.g. next 100 filings). When the previous response had no continuationKey, there are no more pages.
Response
OK
Example response
{
"orderId": 12345,
"cost": {
"type": "credit",
"value": 3
},
"links": {
"self": "/orders/12345"
},
"data": [
{
"cost": {
"type": "credit",
"value": 3
},
"name": "Form 15 - Annual Accounts 2021/22",
"category": "Annual Accounts",
"deliveryTimeMinutes": 15,
"documentFormat": [
"application/pdf"
]
}
]
}