Employee Data
Clean Employee API
Sample: Clean Employee API
2min
All personal/company information mentioned within this context is entirely fictional and is solely intended for illustrative purposes.
JSON
1{
2 "id": 1234,
3 "full_name": "Jane A. Doe",
4 "name_first": "Jane",
5 "name_middle": "A.",
6 "name_last": "Doe",
7 "websites_professional_network": "https://www.professional_network.com/profile/janedoe",
8 "picture_url": "https://www.example.com/janedoe.jpg",
9 "description": "Experienced data analyst with a passion for insights.",
10 "job_title": "Data Analyst",
11 "is_decision_maker": 1,
12 "job_description": "Analyzing large datasets to extract meaningful insights.",
13 "company_id": 67890,
14 "experience": [
15 {
16 "title": "Senior Data Analyst",
17 "description": "Leading data analysis projects.",
18 "order_in_profile": 1,
19 "company_name": "Example Company",
20 "company_url": "https://www.example-company.com",
21 "company_id": 987654,
22 "date_from": "2019-06-01",
23 "date_from_year": 2019,
24 "date_from_month": 6,
25 "date_to": "2023-08-01",
26 "date_to_year": 2023,
27 "date_to_month": 8,
28 "location": "San Francisco, CA",
29 "duration": "4 years 2 months",
30 "duration_months": 50,
31 "department": "Data Science",
32 "management_level": "Senior"
33 "company_type": "Privately Held",
34 "company_founded": "2000",
35 "company_followers_count": 250000,
36 "company_website": "www.example-company.com",
37 "company_facebook_url": [
38 "https://www.facebook.com/example-company"
39 ],
40 "company_twitter_url": [
41 "https://www.twitter.com/example-company"
42 ],
43 "company_professional_network_url": "https://www.professional_network.com/company/example-company",
44 "company_size_range": "51-200 employees",
45 "company_size_employees_count": 100,
46 "company_industry": "Data Infrastructure and Analytics",
47 "company_location_hq_full_address": "123 Other St, San Francisco, CA",
48 "company_location_hq_country": "USA",
49 "company_location_hq_regions": [
50 "North America",
51 "AMER"
52 ],
53 "company_location_hq_country_iso2": "US",
54 "company_location_hq_country_iso3": "USA",
55 "company_location_hq_city": "San Francisco",
56 "company_location_hq_state": "CA",
57 "company_location_hq_street": "Other Street",
58 "company_location_hq_zipcode": "0000",
59 "company_last_updated": "2024-08-01",
60 "company_categories_and_keywords": [
61 "Data",
62 "Analytics",
63 "Data Science"
64 ],
65 "company_stock_ticker": [
66 "EXMP"
67 ],
68 "company_is_b2b": 1,
69 "company_annual_revenue": 25000000,
70 "company_annual_revenue_currency": "$",
71 "company_employees_count_change_yearly_percentage": 5,
72 "company_last_funding_round_announced_date": "2023-06-01",
73 "company_last_funding_round_amount_raised": 150000
74 }
75 ],
76 "education": [
77 {
78 "title": "Bachelor of Science in Computer Science",
79 "major": "Computer Science",
80 "date_from": "2015-09-01",
81 "date_to": "2019-05-01",
82 "description": "Studied data structures, algorithms, and machine learning.",
83 "activities_and_societies": "AI Club, Coding Bootcamp",
84 "institution_url": "https://www.example-university.edu"
85 }
86 ],
87 "languages": [
88 {
89 "language": "English",
90 "proficiency": "Native",
91 "order_in_profile": 1
92 }
93 ],
94 "certifications": [
95 {
96 "title": "Certified Data Analyst",
97 "issuer": "Example Institute",
98 "credential_id": "DA123456",
99 "certificate_url": "https://www.example-certificates.com/DA123456",
100 "date_from": "2020-05-01",
101 "date_from_year": 2020,
102 "date_from_month": 5,
103 "date_to": "2025-05-01",
104 "date_to_year": 2025,
105 "date_to_month": 5,
106 "issuer_url": "https://www.example-institute.com",
107 "order_in_profile": 1
108 }
109 ],
110 "courses": [
111 {
112 "organizer": "Example Courses",
113 "title": "Machine Learning",
114 "order_in_profile": 1
115 }
116 ],
117 "awards": [
118 {
119 "title": "Best Data Scientist Award",
120 "issuer": "Example Company",
121 "description": "Recognized for outstanding contributions to data analytics.",
122 "date": "2022-12-01",
123 "date_year": 2022,
124 "date_month": 12,
125 "date_day": 1,
126 "order_in_profile": 1
127 }
128 ],
129 "activity": [
130 {
131 "activity_url": "https://www.professional_network.com/posts/example-company-123456",
132 "title": "Example Company is excited to introduce our Team Spotlight featuring Jane Doe!",
133 "action": "Liked by",
134 "order_in_profile": 1,
135 }
136 ],
137 "member_skills": ["Python," "SQL," "Data Visualization"],
138 "member_recommendations": [
139 {
140 "recommendation": "Jane is a top-notch analyst with deep insights into big data.",
141 "referee_url": "https://www.professional-network.com/profile/johndoe",
142 "order_in_profile": 1,
143 "referee_name": "John Doe"
144 }
145 ],
146 "recommendations_count": 5,
147 "connections_count": 500,
148 "location_raw_address": "123 Main St, New York, NY",
149 "location_country": "USA",
150 "location_regions": "New York, NY",
151 "last_updated": "2024-03-01",
152 "is_deleted": 0,
153 "department": "Data Science",
154 "management_level": "Senior",
155 "is_working": 1,
156 "is_hidden": 0,
157 "generated_headline": "Expert in Big Data & Machine Learning",
158 "headline": "Senior Data Analyst at Example Company",
159 "shorthand_names": ["JaneD", "JDoe"],
160 "follower_count": 150,
161 "total_experience_duration": "4 years",
162 "total_experience_duration_months": 48
163}
164
Updated 08 Apr 2025
Did this page help you?