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:query {
addedCompanies(activatedAtTimeFrame: { from: "2020-07-03", to: "2020-07-07" }) {
nodes {
activatedAt
displayName
duns
homepage
id
slug
}
totalCount
}
}
Last modified 2yr ago