Skip to main content
The following example use-case shows how to find buyer-intent data based on Github stargazers of a Github project named ‘Airflow’. A star from a person that works for a significant corporation can be a hint of buying intent in the data pipelines space.
const result = await anchorClient.agent.task(
  `On the current stargazers list, return the GitHub profile URLs of all users
  that are a part of a well-known company. Then, do this for the first 3 pages
  using the "page" query parameter.
  Return a JSON array result: ["url1", "url2", ...].`,
  {
    taskOptions: {
      url: 'https://github.com/apache/airflow/stargazers?page=1',
    }
  }
)
console.log(result);