Links

Basic Company Information

Basic Fields

Field
Type
Description
companyType
Public, private, investor, subsidiary
countryOfRegistration
String
Country code, e.g. "US"
displayName
String
Name of the company
duns
String
DUNS
figi
String
FIGI
foundedYear
String
Year the company was founded
id
ID
Craft ID
jobsCount
Int
Count of job postings
locationsCount
Int
Count of corporate office locations
logo
Image
Logo of the company
longDescription
String
Full description of the company
parentCompany
Company
Parent company (if subsidiary)
shortDescription
String
1 sentence description
status
"active" or "closed"
stockTicker
String
Ticker for the company (if public)
stockMarket
Stock Market (Exchange name) for the company (if public)
taxId
String
Company Tax ID
tags
[Tag]
List of company tags
patents
productAndServiceCodes
govSpending
securityRatings
usgProhibitedLists
Field
Type
Description
blog
String
Company blog URL
craftUrl
String
Company page URL on craft.co website
crunchbase
String
Crunchbase URL
facebook
String
Facebook URL
homepage
String
Company website URL
instagram
String
Company Instagram URL
linkedin
String
Linkedin URL
pinterest
String
Pinterest URL
twitter
String
Twitter URL
wikipedia
String
Wikipedia URL
youtube
String
Youtube URL

Query example

# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
# Basic fields
companyType
countryOfRegistration
displayName
duns
figi
foundedYear
id
jobsCount
locationsCount
logo {
url
}
longDescription
parentCompany {
displayName
}
shortDescription
status
stockTicker
stockMarket {
mic
name
}
taxId
tags {
name
}
usgProhibitedLists {
listName
code
}
# Web links
blog
craftUrl
crunchbase
facebook
homepage
instagram
linkedin
pinterest
twitter
youtube
}
}
# variables
{ "domain": "stripe.com" }