> For the complete documentation index, see [llms.txt](https://docs.craft.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.craft.co/added-companies-api/added-companies-api-introduction.md).

# Newly Profiled Companies API Introduction

In addition to the Company Data API, Craft offers a Newly Profiled Companies API. This API allows you to query for new companies that were activated for a specific time period.

The time period should be less than 30 days.

`query` is a required `activatedAtTimeFrame` variable. An example would be:

```graphql
query {
  addedCompanies(activatedAtTimeFrame: { from: "2020-07-03", to: "2020-07-07" }) {
    nodes {
      activatedAt
      displayName
      duns
      homepage
      id
      slug
    }
    totalCount
  }
}
```
