Collect
Data type:
URLs:
Base Company
https://api.coresignal.com/cdapi/v2/company_base/collect/{company_id} https://api.coresignal.com/cdapi/v2/company_base/collect/{profile_url/shorthand_name}
Overview
Find instructions for collection endpoint usage and data collection.
Use the collection endpoints to collect Base Company data using IDs, profile URLs or shorthand names.
Learn how to obtain Base Company data using IDs
Learn how to obtain Base Company data using profile URLs or shorthand names
Company ID
/v2/company_base/collect/{company_id}
Collect Base Company data using company IDs (retrieved using company search endpoints)
Shorthand name
/v2/company_base/collect/{profile_url/shorthand_name}
Collect Base Company data using profile URLs or shorthand names taken from the URLs
Collection using IDs
Examples in this article are prepared using Postman.
However, you can use the most convenient tool: terminal, Postman, or any API-compatible application.
cURL (Postman)
Use the provided request template below. Enter a valid company_id value and your API Key.
curl -X 'GET' \
'https://api.coresignal.com/cdapi/v2/company_base/collect/{company_id}' \
-H 'accept: application/json' \
-H 'apikey: {API Key}'curl -X 'GET' \
'https://api.coresignal.com/cdapi/v2/company_base/collect/{company_id}?fields=id&fields=name&fields=created' \
-H 'accept: application/json' \
-H 'apikey: {API Key}'Collection using profile URLs or shorthand names
Examples in this article are prepared using Postman.
However, you can use the tool that is most convenient for you: terminal, Postman, or any API-compatible application.
cURL (Postman)
Use the provided request template below. Enter a valid profile_url or shorthand_name value and your API Key.
curl -X 'GET' \
'https://api.coresignal.com/cdapi/v2/company_base/collect/{profile_url/shorthand_name}' \
-H 'accept: application/json' \
-H 'apikey: {API Key}'curl -X 'GET' \
'https://api.coresignal.com/cdapi/v2/company_base/collect/{profile_url/shorthand_name}?fields=id&fields=name&fields=created' \
-H 'accept: application/json' \
-H 'apikey: {API Key}'Last updated
Was this helpful?