Javascript
import Openregister from 'openregister'; const client = new Openregister({ apiKey: 'My API Key', }); const response = await client.document.getCachedV1('document_id'); console.log(response.id);
{ "id": "<string>", "name": "<string>", "date": "<string>", "url": "<string>", "type": "articles_of_association" }
API Key Authentication Provide your API key as a Bearer token in the Authorization header.
Unique document identifier. Example: a6daa905-a87e-451c-9df6-35051eec8b61
Successfully retrieved document information
The response is of type object.
object