> For the complete documentation index, see [llms.txt](https://doc.keepnetlabs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.keepnetlabs.com/api-reference/reseller/billing/list-recently-created-companies.md).

# List recently created companies

As a Reseller you list or count companies created in a recent period for billing, onboarding reports, or growth metrics. Use a credential with Client Role = **Reseller**. Call company search with **`orderBy: "CreateTime"`** and **`ascending: false`** to get newest first; use **`filter`** with a date range on creation date if the API supports it. Total count is in the response or sum across pages.

***

## POST /api/companies/search

Returns a paginated list of companies. Set **`orderBy: "CreateTime"`** and **`ascending: false`** to list newest companies first. Optionally use **`filter`** to restrict by creation date range (see Endpoints → **Company** for supported filter fields). The response total count gives the number of companies matching the criteria; paginate through all pages if you need a full list or count for a period.

> Retrieves a list of all companies. Use orderBy CreateTime and ascending false to list recently created companies first; use filter for a date range if supported.

{% openapi src="/files/YqgEnchxXuSVklhH9GGT" path="/api/companies/search" method="post" expanded="true" %}
[keepnet-api-spec.json](https://3453589210-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LMcQ_WCXOrHv3r05ae5%2Fuploads%2Fgit-blob-31c738c1a6bb3d2911bd3730c780d6ad7fa6bbad%2Fkeepnet-api-spec.json?alt=media)
{% endopenapi %}

**Body example** (newest first; **`Content-Type: application/json`**. Avoid **`filter: null`**, **`orderBy: null`**, and **`searchInputTextValue`: `null`**):

```json
{
  "pageNumber": 1,
  "pageSize": 20,
  "orderBy": "CreateTime",
  "ascending": false,
  "filter": {
    "Condition": "AND",
    "SearchInputTextValue": ""
  }
}
```

***

## POST /api/companies/search/export

Exports the company list to CSV or Excel with the same order and filter. Use this to get all recently created companies in one file and compute counts or dates client-side.

> Exports the list of companies to CSV or Excel. Use the same orderBy and filter as in search to export recently created companies.

{% openapi src="/files/YqgEnchxXuSVklhH9GGT" path="/api/companies/search/export" method="post" expanded="true" %}
[keepnet-api-spec.json](https://3453589210-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LMcQ_WCXOrHv3r05ae5%2Fuploads%2Fgit-blob-31c738c1a6bb3d2911bd3730c780d6ad7fa6bbad%2Fkeepnet-api-spec.json?alt=media)
{% endopenapi %}

***

## Common errors

* **403 Forbidden** — Credential is not Reseller. Set Client Role = **Reseller** in **Company → Company Settings → REST API**. [Roles and permissions →](/next-generation-product/platform/company/system-users/user-roles.md)
* **401 Unauthorized** — Missing or invalid token. Request a new token via `POST /connect/token`.
* **400 Bad Request** — Invalid request body. Send **`pageNumber`**, **`pageSize`**, explicit **`orderBy`** (e.g. **`"CreateTime"`**), **`ascending`**, and a **minimal `filter`** (**`Condition`** + **`SearchInputTextValue`: `""`**) — not **`filter: null`** or null filter fields.

**Related:** [List companies with license details →](/api-reference/reseller/companies/list-companies-with-license-details.md). [Export customer list for billing →](/api-reference/reseller/billing/export-customer-list-for-billing.md). [Scope API requests to a customer →](/api-reference/reseller/companies/scope-api-requests-to-customer.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://doc.keepnetlabs.com/api-reference/reseller/billing/list-recently-created-companies.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
