GET
/
companies
/
founded-recently
/
curl --request GET \
  --url https://jobs-api.registercheck.de/api/v2/companies/founded-recently/ \
  --header 'Authorization: Bearer <token>'
{
  "companies": [
    {
      "id": "<string>",
      "name": "<string>",
      "slug": "<string>",
      "legal_form": "<string>",
      "register_number": 123,
      "register_court": "<string>",
      "country": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "total": 123,
    "offset": 123,
    "limit": 123
  }
}

Authorizations

Authorization
string
header
required

Enter your API key

Query Parameters

days
integer | null
default:30

Number of days to look back for newly founded companies

register_court
string | null

Filter by specific register court

offset
integer | null
default:0

Pagination offset

limit
integer | null
default:50

Pagination limit, less than 100 items per page

Response

200
application/json

Successful Response

Model for founded recently endpoint response