Domains we haven't seen before don't phase us. The first time Intricately sees a domain, we'll analyze it and create a company document for it, just give us a little bit of time. (Note: It may take up to 15 minutes to generate a company document from a domain we haven't previously encountered.)
Code Examples
cURL
curl -XGET https://api.intricately.com/api/v2/companies?domain=domain-we-have-never-seen.com -H "X-API-KEY: <YOUR_API_KEY>"
Python
headers = { 'X-API-KEY': <YOUR_API_KEY> }
params = { 'domain':'domain-we-have-never-seen.com' }
requests.get("https://api.intricately.com/api/v2/companies", params=params, headers=headers).json()
Ruby
require 'RestClient'
headers = { "X-API-KEY" => <YOUR_API_KEY>, content_type: :json, accept: :json }
RestClient.get 'https://api.intricately.com/api/v2/companies?domain=domain-we-have-never-seen.com', headers
Example API Response
{
"slug" : "domain-we-have-never-seen-com",
"status_code" : 1,
"logo" : "https://my.intricately.com/assets/images/vendorlogos/cloudrupt.jpg"
}
Comments
0 comments
Article is closed for comments.