registercheckby openlaw group
API referenceDocuments

List a company's register documents

GET
/companies/{company_id}/documents

Documents retrieved from the register for this company, newest first. Download a document through its content_url.

Costs 1 credit.

Authorization

bearerAuth
AuthorizationBearer <token>

Your API key, sent as Authorization: Bearer rc_live_….

In: header

Path Parameters

company_id*string

The company's id.

Formatuuid

Query Parameters

type?array<>

Only documents of these types.

limit?integer

Page size.

Range1 <= value <= 100
Default20
starting_after?string

Return the page after the object with this id. Cannot be combined with ending_before.

Formatuuid
ending_before?string

Return the page before the object with this id. Cannot be combined with starting_after.

Formatuuid

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/companies/497f6eca-6276-4993-bfeb-53cbbbba6f08/documents"
{  "object": "list",  "has_more": false,  "url": "/v1/companies/3f1c2a9e-5b7d-4c8a-9e21-6d4f0b8a1c55/documents",  "data": [    {      "id": "6c7d8e9f-0a1b-4c2d-8e3f-4a5b6c7d8e9f",      "object": "document",      "company_id": "3f1c2a9e-5b7d-4c8a-9e21-6d4f0b8a1c55",      "type": "shareholder_list",      "title": "Liste der Gesellschafter",      "published_date": "2025-06-03",      "retrieved_at": "2026-06-04T08:12:30Z",      "content_type": null,      "content_url": "https://api.registercheck.de/v1/documents/6c7d8e9f-0a1b-4c2d-8e3f-4a5b6c7d8e9f/content"    }  ]}