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
Financials
Human capital
Company Ratings
Employee Numbers
Human Capital Metrics
Job Categories
Jobs
Key Executives
Salaries
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
Jobs
The granular level job detail data for this company
Fields
Field
Type
Description
city
String
City
country
String
Country code
createdAt
String
ISO 8601 formatted
DateTime
job was created
description
String
Description of the job
naicsCode
String
NAICS code
naicsDescription
String
NAICS sector description
onetOccupationCode
String
ONET code
onetOccupationName
String
ONET occupation name
region
String
Region
title
String
Job Title
uid
​
String
!
Internal job ID
updatedAt
String
ISO 8601 formatted
DateTime
job was updated
zipCode
String
Zip Code
Arguments
first
– Number of jobs to retrieve, should not exceed 100
offset
– Offset in the list
Query example
1
# query
2
query
findCompanyByDomain
(
$domain
:
String
!
)
{
3
company
(
domain
:
$domain
)
{
4
jobsCount
5
jobs
(
first
:
10
,
offset
:
100
)
{
6
city
7
country
8
createdAt
9
description
10
naicsCode
11
naicsDescription
12
onetOccupationCode
13
onetOccupationName
14
region
15
title
16
uid
17
updatedAt
18
zipCode
19
}
20
}
21
}
22
​
23
​
24
# variables
25
{
"domain"
:
"facebook.com"
}
Copied!
Previous
Job Categories
Next
Key Executives
Last modified
1yr ago
Copy link
Contents
Fields
Arguments
Query example