Request an API key
Back to Craft.co
Search…
Introduction
About GraphQL
Authentication
Troubleshooting
Company Data API
Company Data API Introduction
Getting started
Query Parameters
Data Categories
Basic Company Information
USG Prohibited List
Security Rating
Gov Spending
Unspsc Code
Patent
Stock Market
Tag
Financials
Human capital
Operating data
GraphQL Enums
Core data types
Query examples
Restrictions on Usage
Usage
Added Companies API
Newly Profiled Companies API Introduction
Query
Alerts API
Alerts API Introduction
Getting started
Alerts API Queries
Alerts API Reference
Query examples
Restrictions on Usage
Powered By
GitBook
Basic Company Information
Basic Fields
Field
Type
Description
companyType
​
CompanyTypeEnum
​
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
​
CompanyStatusEnum
​
"active"
or
"closed"
stockTicker
String
Ticker for the company (if public)
stockMarket
​
StockMarket
​
Stock Market (Exchange name) for the company (if public)
taxId
String
Company Tax ID
tags
[
Tag
]
List of company tags
patents
[
Patent
!]
​
Web links
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
1
# query
2
query
findCompanyByDomain
(
$domain
:
String
!
)
{
3
company
(
domain
:
$domain
)
{
4
# Basic fields
5
companyType
6
countryOfRegistration
7
displayName
8
duns
9
figi
10
foundedYear
11
id
12
jobsCount
13
locationsCount
14
logo
{
15
url
16
}
17
longDescription
18
parentCompany
{
19
displayName
20
}
21
shortDescription
22
status
23
stockTicker
24
stockMarket
{
25
mic
26
name
27
}
28
taxId
29
tags
{
30
name
31
}
32
usgProhibitedLists
{
33
listName
34
code
35
}
36
# Web links
37
blog
38
craftUrl
39
crunchbase
40
facebook
41
homepage
42
instagram
43
linkedin
44
pinterest
45
twitter
46
youtube
47
}
48
}
49
​
50
# variables
51
{
"domain"
:
"stripe.com"
}
Copied!
Company Data API - Previous
Data Categories
Next
USG Prohibited List
Last modified
1yr ago
Copy link
Contents
Basic Fields
Web links
Query example