-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathconfig.yml
More file actions
1047 lines (1005 loc) · 39 KB
/
Copy pathconfig.yml
File metadata and controls
1047 lines (1005 loc) · 39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Configuration for New Grad Jobs Aggregator
# Job filtering settings
filtering:
# Minimum expected number of companies across all APIs
min_expected_companies: 200
# Maximum age of job postings in days
max_age_days: 60
# New grad signals to look for in job titles (case insensitive)
new_grad_signals:
# Explicit new grad keywords
- "new grad"
- "new graduate"
- "recent graduate"
- "fresh graduate"
- "university grad"
- "college grad"
- "new college grad"
- "campus hire"
- "campus"
# Entry level keywords
- "entry level"
- "entry-level"
- "early career"
- "early-career"
- "junior"
- "trainee"
- "associate"
- "intern conversion"
# Year-based programs
- "2024 start"
- "2025 start"
- "2026 start"
- "2025"
- "2026"
- "class of"
# Level indicators (common at tech companies)
- "level 1"
- "level 2"
- "level i"
- "level ii"
- " I "
- " II "
- " L3"
- " L4"
- " E3"
- " E4"
- " SDE I"
- " SDE II"
- " SWE I"
- " SWE II"
# Programs
- "graduate program"
- "rotational program"
- "development program"
- "analyst program"
- "engineering program"
# Additional common titles
- "software engineer"
- "software developer"
- "data engineer"
- "data scientist"
- "machine learning engineer"
- "ml engineer"
- "product analyst"
- "business analyst"
- "systems engineer"
- "infrastructure engineer"
- "security engineer"
- "network engineer"
- "devops engineer"
- "site reliability"
- "sre"
# Track signals to look for in job titles/descriptions (case insensitive)
track_signals:
- "software"
- "engineer"
- "developer"
- "programming"
- "data"
- "data science"
- "data scientist"
- "data engineer"
- "data analyst"
- "machine learning"
- "ml"
- "ai"
- "artificial intelligence"
- "network"
- "network engineer"
- "infrastructure"
- "sre"
- "site reliability"
- "site reliability engineer"
- "devops"
- "platform"
- "cloud"
- "backend"
- "frontend"
- "full stack"
- "fullstack"
# Exclusion signals - jobs with these keywords are filtered OUT
exclusion_signals:
- "senior"
- "sr."
- "sr "
- "staff"
- "principal"
- "lead"
- "manager"
- "director"
- "vp"
- "vice president"
- "head of"
- "architect"
- "distinguished"
- "fellow"
- "10+ years"
- "8+ years"
- "7+ years"
- "6+ years"
- "5+ years"
- "intern"
- "internship"
apis:
greenhouse:
companies:
# Original working companies
- name: "Abnormal Security"
url: "https://boards-api.greenhouse.io/v1/boards/abnormalsecurity/jobs"
- name: "Affirm"
url: "https://boards-api.greenhouse.io/v1/boards/affirm/jobs"
- name: "Airbnb"
url: "https://boards-api.greenhouse.io/v1/boards/airbnb/jobs"
- name: "Airtable"
url: "https://boards-api.greenhouse.io/v1/boards/airtable/jobs"
- name: "Algolia"
url: "https://boards-api.greenhouse.io/v1/boards/algolia/jobs"
- name: "Amplitude"
url: "https://boards-api.greenhouse.io/v1/boards/amplitude/jobs"
- name: "Anduril Industries"
url: "https://boards-api.greenhouse.io/v1/boards/andurilindustries/jobs"
- name: "AppLovin"
url: "https://boards-api.greenhouse.io/v1/boards/applovin/jobs"
- name: "Block"
url: "https://boards-api.greenhouse.io/v1/boards/block/jobs"
- name: "BridgeBio"
url: "https://boards-api.greenhouse.io/v1/boards/bridgebio/jobs"
- name: "Calm"
url: "https://boards-api.greenhouse.io/v1/boards/calm/jobs"
- name: "Carta"
url: "https://boards-api.greenhouse.io/v1/boards/carta/jobs"
- name: "Cerebral"
url: "https://boards-api.greenhouse.io/v1/boards/cerebral/jobs"
- name: "CharterUP"
url: "https://boards-api.greenhouse.io/v1/boards/charterup/jobs"
- name: "Checkr"
url: "https://boards-api.greenhouse.io/v1/boards/checkr/jobs"
- name: "Chime"
url: "https://boards-api.greenhouse.io/v1/boards/chime/jobs"
- name: "CircleCI"
url: "https://boards-api.greenhouse.io/v1/boards/circleci/jobs"
- name: "Civic Nation"
url: "https://boards-api.greenhouse.io/v1/boards/civicnation/jobs"
- name: "ClickHouse"
url: "https://boards-api.greenhouse.io/v1/boards/clickhouse/jobs"
- name: "Cloudflare"
url: "https://boards-api.greenhouse.io/v1/boards/cloudflare/jobs"
- name: "Cockroach Labs"
url: "https://boards-api.greenhouse.io/v1/boards/cockroachlabs/jobs"
- name: "Contentful"
url: "https://boards-api.greenhouse.io/v1/boards/contentful/jobs"
- name: "Coursera"
url: "https://boards-api.greenhouse.io/v1/boards/coursera/jobs"
- name: "Cribl"
url: "https://boards-api.greenhouse.io/v1/boards/cribl/jobs"
- name: "Culture Amp"
url: "https://boards-api.greenhouse.io/v1/boards/cultureamp/jobs"
- name: "Databricks"
url: "https://boards-api.greenhouse.io/v1/boards/databricks/jobs"
- name: "Datadog"
url: "https://boards-api.greenhouse.io/v1/boards/datadog/jobs"
- name: "Dialpad"
url: "https://boards-api.greenhouse.io/v1/boards/dialpad/jobs"
- name: "Discord"
url: "https://boards-api.greenhouse.io/v1/boards/discord/jobs"
- name: "Dropbox"
url: "https://boards-api.greenhouse.io/v1/boards/dropbox/jobs"
- name: "Duolingo"
url: "https://boards-api.greenhouse.io/v1/boards/duolingo/jobs"
- name: "Elastic"
url: "https://boards-api.greenhouse.io/v1/boards/elastic/jobs"
- name: "Epic Games"
url: "https://boards-api.greenhouse.io/v1/boards/epicgames/jobs"
- name: "Faire"
url: "https://boards-api.greenhouse.io/v1/boards/faire/jobs"
- name: "Fastly"
url: "https://boards-api.greenhouse.io/v1/boards/fastly/jobs"
- name: "Figma"
url: "https://boards-api.greenhouse.io/v1/boards/figma/jobs"
- name: "Fireblocks"
url: "https://boards-api.greenhouse.io/v1/boards/fireblocks/jobs"
- name: "Flatiron Health"
url: "https://boards-api.greenhouse.io/v1/boards/flatironhealth/jobs"
- name: "Flexport"
url: "https://boards-api.greenhouse.io/v1/boards/flexport/jobs"
- name: "Gemini"
url: "https://boards-api.greenhouse.io/v1/boards/gemini/jobs"
- name: "GitLab"
url: "https://boards-api.greenhouse.io/v1/boards/gitlab/jobs"
- name: "Glean"
url: "https://boards-api.greenhouse.io/v1/boards/gleanwork/jobs"
- name: "Grafana Labs"
url: "https://boards-api.greenhouse.io/v1/boards/grafanalabs/jobs"
- name: "Greenhouse"
url: "https://boards-api.greenhouse.io/v1/boards/greenhouse/jobs"
- name: "Gusto"
url: "https://boards-api.greenhouse.io/v1/boards/gusto/jobs"
- name: "Honeycomb"
url: "https://boards-api.greenhouse.io/v1/boards/honeycomb/jobs"
- name: "Huntress"
url: "https://boards-api.greenhouse.io/v1/boards/huntress/jobs"
- name: "Imply"
url: "https://boards-api.greenhouse.io/v1/boards/imply/jobs"
- name: "Instacart"
url: "https://boards-api.greenhouse.io/v1/boards/instacart/jobs"
- name: "Instawork"
url: "https://boards-api.greenhouse.io/v1/boards/instawork/jobs"
- name: "Intercom"
url: "https://boards-api.greenhouse.io/v1/boards/intercom/jobs"
- name: "Justworks"
url: "https://boards-api.greenhouse.io/v1/boards/justworks/jobs"
- name: "Khan Academy"
url: "https://boards-api.greenhouse.io/v1/boards/khanacademy/jobs"
- name: "Lattice"
url: "https://boards-api.greenhouse.io/v1/boards/lattice/jobs"
- name: "LaunchDarkly"
url: "https://boards-api.greenhouse.io/v1/boards/launchdarkly/jobs"
- name: "LinkedIn"
url: "https://boards-api.greenhouse.io/v1/boards/linkedin/jobs"
- name: "Locus Robotics"
url: "https://boards-api.greenhouse.io/v1/boards/locusrobotics/jobs"
- name: "Lucid"
url: "https://boards-api.greenhouse.io/v1/boards/lucidsoftware/jobs"
- name: "Lyft"
url: "https://boards-api.greenhouse.io/v1/boards/lyft/jobs"
- name: "Magic Leap"
url: "https://boards-api.greenhouse.io/v1/boards/magicleap/jobs"
- name: "Marqeta"
url: "https://boards-api.greenhouse.io/v1/boards/marqeta/jobs"
- name: "Materialize"
url: "https://boards-api.greenhouse.io/v1/boards/materialize/jobs"
- name: "Maven Clinic"
url: "https://boards-api.greenhouse.io/v1/boards/mavenclinic/jobs"
- name: "Melio"
url: "https://boards-api.greenhouse.io/v1/boards/melio/jobs"
- name: "Mercari"
url: "https://boards-api.greenhouse.io/v1/boards/mercari/jobs"
- name: "Mercury"
url: "https://boards-api.greenhouse.io/v1/boards/mercury/jobs"
- name: "Mixpanel"
url: "https://boards-api.greenhouse.io/v1/boards/mixpanel/jobs"
- name: "MongoDB"
url: "https://boards-api.greenhouse.io/v1/boards/mongodb/jobs"
- name: "New Relic"
url: "https://boards-api.greenhouse.io/v1/boards/newrelic/jobs"
- name: "Nuro"
url: "https://boards-api.greenhouse.io/v1/boards/nuro/jobs"
- name: "Okta"
url: "https://boards-api.greenhouse.io/v1/boards/okta/jobs"
- name: "Opendoor"
url: "https://boards-api.greenhouse.io/v1/boards/opendoor/jobs"
- name: "Orca Security"
url: "https://boards-api.greenhouse.io/v1/boards/orcasecurity/jobs"
- name: "Oscar Health"
url: "https://boards-api.greenhouse.io/v1/boards/oscar/jobs"
- name: "PagerDuty"
url: "https://boards-api.greenhouse.io/v1/boards/pagerduty/jobs"
- name: "Peloton"
url: "https://boards-api.greenhouse.io/v1/boards/peloton/jobs"
- name: "Pinterest"
url: "https://boards-api.greenhouse.io/v1/boards/pinterest/jobs"
- name: "PlanetScale"
url: "https://boards-api.greenhouse.io/v1/boards/planetscale/jobs"
- name: "Poshmark"
url: "https://boards-api.greenhouse.io/v1/boards/poshmark/jobs"
- name: "Postman"
url: "https://boards-api.greenhouse.io/v1/boards/postman/jobs"
- name: "Precision Medicine Group"
url: "https://boards-api.greenhouse.io/v1/boards/precisionmedicinegroup/jobs"
- name: "Pulley"
url: "https://boards-api.greenhouse.io/v1/boards/pulley/jobs"
- name: "Recursion"
url: "https://boards-api.greenhouse.io/v1/boards/recursionpharmaceuticals/jobs"
- name: "Reddit"
url: "https://boards-api.greenhouse.io/v1/boards/reddit/jobs"
- name: "Remote"
url: "https://boards-api.greenhouse.io/v1/boards/remotecom/jobs"
- name: "Riot Games"
url: "https://boards-api.greenhouse.io/v1/boards/riotgames/jobs"
- name: "Ripple"
url: "https://boards-api.greenhouse.io/v1/boards/ripple/jobs"
- name: "Robinhood"
url: "https://boards-api.greenhouse.io/v1/boards/robinhood/jobs"
- name: "Roblox"
url: "https://boards-api.greenhouse.io/v1/boards/roblox/jobs"
- name: "Salesloft"
url: "https://boards-api.greenhouse.io/v1/boards/salesloft/jobs"
- name: "Samsara"
url: "https://boards-api.greenhouse.io/v1/boards/samsara/jobs"
- name: "Scale AI"
url: "https://boards-api.greenhouse.io/v1/boards/scaleai/jobs"
- name: "Scopely"
url: "https://boards-api.greenhouse.io/v1/boards/scopely/jobs"
- name: "Scout AI"
url: "https://boards-api.greenhouse.io/v1/boards/scoutai/jobs"
- name: "SeatGeek"
url: "https://boards-api.greenhouse.io/v1/boards/seatgeek/jobs"
- name: "SingleStore"
url: "https://boards-api.greenhouse.io/v1/boards/singlestore/jobs"
- name: "SIXGEN"
url: "https://boards-api.greenhouse.io/v1/boards/sixgeninc/jobs"
- name: "SoFi"
url: "https://boards-api.greenhouse.io/v1/boards/sofi/jobs"
- name: "SpaceX"
url: "https://boards-api.greenhouse.io/v1/boards/spacex/jobs"
- name: "Squarespace"
url: "https://boards-api.greenhouse.io/v1/boards/squarespace/jobs"
- name: "Stability AI"
url: "https://boards-api.greenhouse.io/v1/boards/stabilityai/jobs"
- name: "Starburst"
url: "https://boards-api.greenhouse.io/v1/boards/starburst/jobs"
- name: "StockX"
url: "https://boards-api.greenhouse.io/v1/boards/stockx/jobs"
- name: "Stripe"
url: "https://boards-api.greenhouse.io/v1/boards/stripe/jobs"
- name: "StubHub"
url: "https://boards-api.greenhouse.io/v1/boards/stubhubinc/jobs"
- name: "Sumo Logic"
url: "https://boards-api.greenhouse.io/v1/boards/sumologic/jobs"
- name: "Sweetgreen"
url: "https://boards-api.greenhouse.io/v1/boards/sweetgreen/jobs"
- name: "Tailscale"
url: "https://boards-api.greenhouse.io/v1/boards/tailscale/jobs"
- name: "Tanium"
url: "https://boards-api.greenhouse.io/v1/boards/tanium/jobs"
- name: "Temporal"
url: "https://boards-api.greenhouse.io/v1/boards/temporal/jobs"
- name: "Third Bridge"
url: "https://boards-api.greenhouse.io/v1/boards/thirdbridge/jobs"
- name: "Together AI"
url: "https://boards-api.greenhouse.io/v1/boards/togetherai/jobs"
- name: "Twilio"
url: "https://boards-api.greenhouse.io/v1/boards/twilio/jobs"
- name: "Twitch"
url: "https://boards-api.greenhouse.io/v1/boards/twitch/jobs"
- name: "Unity Technologies"
url: "https://boards-api.greenhouse.io/v1/boards/unity3d/jobs"
- name: "Upstart"
url: "https://boards-api.greenhouse.io/v1/boards/upstart/jobs"
- name: "Vercel"
url: "https://boards-api.greenhouse.io/v1/boards/vercel/jobs"
- name: "Waymo"
url: "https://boards-api.greenhouse.io/v1/boards/waymo/jobs"
- name: "Webflow"
url: "https://boards-api.greenhouse.io/v1/boards/webflow/jobs"
- name: "Wiz"
url: "https://boards-api.greenhouse.io/v1/boards/wizinc/jobs"
- name: "xAI"
url: "https://boards-api.greenhouse.io/v1/boards/xai/jobs"
- name: "Yugabyte"
url: "https://boards-api.greenhouse.io/v1/boards/yugabyte/jobs"
- name: "ZoomInfo"
url: "https://boards-api.greenhouse.io/v1/boards/zoominfo/jobs"
- name: "Anthropic"
url: "https://boards-api.greenhouse.io/v1/boards/anthropic/jobs"
- name: "Hugging Face"
url: "https://boards-api.greenhouse.io/v1/boards/huggingface/jobs"
- name: "Cohere"
url: "https://boards-api.greenhouse.io/v1/boards/cohere/jobs"
- name: "Adept AI"
url: "https://boards-api.greenhouse.io/v1/boards/adeptai/jobs"
- name: "Character AI"
url: "https://boards-api.greenhouse.io/v1/boards/characterai/jobs"
- name: "Jasper"
url: "https://boards-api.greenhouse.io/v1/boards/jasper/jobs"
- name: "Brex"
url: "https://boards-api.greenhouse.io/v1/boards/brex/jobs"
- name: "Ramp"
url: "https://boards-api.greenhouse.io/v1/boards/ramp/jobs"
- name: "Deel"
url: "https://boards-api.greenhouse.io/v1/boards/deel/jobs"
- name: "Rippling"
url: "https://boards-api.greenhouse.io/v1/boards/rippling/jobs"
- name: "Vanta"
url: "https://boards-api.greenhouse.io/v1/boards/vanta/jobs"
- name: "Pipe"
url: "https://boards-api.greenhouse.io/v1/boards/pipe/jobs"
- name: "Navan"
url: "https://boards-api.greenhouse.io/v1/boards/navan/jobs"
- name: "Retool"
url: "https://boards-api.greenhouse.io/v1/boards/retool/jobs"
- name: "Canva"
url: "https://boards-api.greenhouse.io/v1/boards/canva/jobs"
- name: "Miro"
url: "https://boards-api.greenhouse.io/v1/boards/miro/jobs"
- name: "Notion"
url: "https://boards-api.greenhouse.io/v1/boards/notion/jobs"
- name: "Verkada"
url: "https://boards-api.greenhouse.io/v1/boards/verkada/jobs"
- name: "Fivetran"
url: "https://boards-api.greenhouse.io/v1/boards/fivetran/jobs"
- name: "dbt Labs"
url: "https://boards-api.greenhouse.io/v1/boards/dbtlabs/jobs"
- name: "HashiCorp"
url: "https://boards-api.greenhouse.io/v1/boards/hashicorp/jobs"
- name: "Confluent"
url: "https://boards-api.greenhouse.io/v1/boards/confluent/jobs"
- name: "Aurora"
url: "https://boards-api.greenhouse.io/v1/boards/aurora/jobs"
- name: "Zoox"
url: "https://boards-api.greenhouse.io/v1/boards/zoox/jobs"
- name: "Cruise"
url: "https://boards-api.greenhouse.io/v1/boards/cruise/jobs"
- name: "Niantic"
url: "https://boards-api.greenhouse.io/v1/boards/niantic/jobs"
- name: "Coinbase"
url: "https://boards-api.greenhouse.io/v1/boards/coinbase/jobs"
- name: "Kraken"
url: "https://boards-api.greenhouse.io/v1/boards/kraken/jobs"
- name: "Alchemy"
url: "https://boards-api.greenhouse.io/v1/boards/alchemy/jobs"
- name: "Chainalysis"
url: "https://boards-api.greenhouse.io/v1/boards/chainalysis/jobs"
lever:
# Lever job board API endpoints for major tech companies
companies:
- name: "Spotify"
url: "https://api.lever.co/v0/postings/spotify"
- name: "Palantir"
url: "https://api.lever.co/v0/postings/palantir"
# Note: Coursera, Twitch, Grammarly, Figma no longer available on Lever
# Many other companies have moved away from Lever API
ashby:
# Ashby Posting API — modern ATS used by many AI labs and devtools companies.
# Endpoint: https://api.ashbyhq.com/posting-api/job-board/<slug>?includeCompensation=true
# Each slug was verified live on 2026-05-16.
companies:
- name: "OpenAI"
url: "https://api.ashbyhq.com/posting-api/job-board/openai"
- name: "Crusoe"
url: "https://api.ashbyhq.com/posting-api/job-board/crusoe"
- name: "Mistral AI"
url: "https://api.ashbyhq.com/posting-api/job-board/mistral"
- name: "Notion"
url: "https://api.ashbyhq.com/posting-api/job-board/notion"
- name: "Cohere"
url: "https://api.ashbyhq.com/posting-api/job-board/cohere"
- name: "Sierra"
url: "https://api.ashbyhq.com/posting-api/job-board/sierra"
- name: "LangChain"
url: "https://api.ashbyhq.com/posting-api/job-board/langchain"
- name: "Cursor"
url: "https://api.ashbyhq.com/posting-api/job-board/cursor"
- name: "Lovable"
url: "https://api.ashbyhq.com/posting-api/job-board/lovable"
- name: "Perplexity"
url: "https://api.ashbyhq.com/posting-api/job-board/perplexity"
- name: "Baseten"
url: "https://api.ashbyhq.com/posting-api/job-board/baseten"
- name: "Ashby"
url: "https://api.ashbyhq.com/posting-api/job-board/ashby"
- name: "Supabase"
url: "https://api.ashbyhq.com/posting-api/job-board/supabase"
- name: "Sentry"
url: "https://api.ashbyhq.com/posting-api/job-board/sentry"
- name: "Modal"
url: "https://api.ashbyhq.com/posting-api/job-board/modal"
- name: "Attio"
url: "https://api.ashbyhq.com/posting-api/job-board/attio"
- name: "Campfire"
url: "https://api.ashbyhq.com/posting-api/job-board/campfire"
- name: "Vapi"
url: "https://api.ashbyhq.com/posting-api/job-board/vapi"
- name: "Linear"
url: "https://api.ashbyhq.com/posting-api/job-board/linear"
- name: "Qualified"
url: "https://api.ashbyhq.com/posting-api/job-board/qualified"
- name: "Browserbase"
url: "https://api.ashbyhq.com/posting-api/job-board/browserbase"
- name: "Anyscale"
url: "https://api.ashbyhq.com/posting-api/job-board/anyscale"
- name: "Pinecone"
url: "https://api.ashbyhq.com/posting-api/job-board/pinecone"
- name: "Weaviate"
url: "https://api.ashbyhq.com/posting-api/job-board/weaviate"
- name: "Turbopuffer"
url: "https://api.ashbyhq.com/posting-api/job-board/turbopuffer"
# Second-pass adds (2026-05-16): probed additional AI/devtools/fintech
- name: "Airbyte"
url: "https://api.ashbyhq.com/posting-api/job-board/airbyte"
- name: "Astronomer"
url: "https://api.ashbyhq.com/posting-api/job-board/astronomer"
- name: "Commure"
url: "https://api.ashbyhq.com/posting-api/job-board/commure"
- name: "Cradle Bio"
url: "https://api.ashbyhq.com/posting-api/job-board/cradlebio"
- name: "Decagon"
url: "https://api.ashbyhq.com/posting-api/job-board/decagon"
- name: "Docker"
url: "https://api.ashbyhq.com/posting-api/job-board/docker"
- name: "ElevenLabs"
url: "https://api.ashbyhq.com/posting-api/job-board/elevenlabs"
- name: "Plaid"
url: "https://api.ashbyhq.com/posting-api/job-board/plaid"
- name: "Poolside"
url: "https://api.ashbyhq.com/posting-api/job-board/poolside"
- name: "Prefect"
url: "https://api.ashbyhq.com/posting-api/job-board/prefect"
- name: "Railway"
url: "https://api.ashbyhq.com/posting-api/job-board/railway"
- name: "Reka"
url: "https://api.ashbyhq.com/posting-api/job-board/reka"
- name: "Runway"
url: "https://api.ashbyhq.com/posting-api/job-board/runway"
- name: "Snowflake"
url: "https://api.ashbyhq.com/posting-api/job-board/snowflake"
- name: "Statsig"
url: "https://api.ashbyhq.com/posting-api/job-board/statsig"
- name: "Stytch"
url: "https://api.ashbyhq.com/posting-api/job-board/stytch"
- name: "Suno"
url: "https://api.ashbyhq.com/posting-api/job-board/suno"
- name: "Warp"
url: "https://api.ashbyhq.com/posting-api/job-board/warp"
- name: "Anthropic"
url: "https://api.ashbyhq.com/posting-api/job-board/anthropic"
- name: "Hugging Face"
url: "https://api.ashbyhq.com/posting-api/job-board/huggingface"
- name: "Together AI"
url: "https://api.ashbyhq.com/posting-api/job-board/togetherai"
- name: "Groq"
url: "https://api.ashbyhq.com/posting-api/job-board/groq"
- name: "Cerebras"
url: "https://api.ashbyhq.com/posting-api/job-board/cerebras"
- name: "Databricks"
url: "https://api.ashbyhq.com/posting-api/job-board/databricks"
- name: "Scale AI"
url: "https://api.ashbyhq.com/posting-api/job-board/scaleai"
- name: "Weights & Biases"
url: "https://api.ashbyhq.com/posting-api/job-board/wandb"
- name: "Replicate"
url: "https://api.ashbyhq.com/posting-api/job-board/replicate"
- name: "Vercel"
url: "https://api.ashbyhq.com/posting-api/job-board/vercel"
- name: "Cal.com"
url: "https://api.ashbyhq.com/posting-api/job-board/calcom"
- name: "Tinybird"
url: "https://api.ashbyhq.com/posting-api/job-board/tinybird"
- name: "Neon"
url: "https://api.ashbyhq.com/posting-api/job-board/neon"
- name: "PlanetScale"
url: "https://api.ashbyhq.com/posting-api/job-board/planetscale"
- name: "Axiom"
url: "https://api.ashbyhq.com/posting-api/job-board/axiom"
- name: "Mintlify"
url: "https://api.ashbyhq.com/posting-api/job-board/mintlify"
- name: "Dub"
url: "https://api.ashbyhq.com/posting-api/job-board/dub"
# Third-pass adds (2026-07-02): additional New Grad friendly Ashby boards
- name: "Authorium"
url: "https://api.ashbyhq.com/posting-api/job-board/authorium"
- name: "SentiLink"
url: "https://api.ashbyhq.com/posting-api/job-board/sentilink"
google:
# P5: Google Careers API deprecated (returns 404 since late 2024).
# Disabled to avoid wasted HTTP calls. Re-enable when a replacement endpoint is found.
enabled: false
max_pages: 3
# Google careers API - searches for new grad positions
search_terms:
- "new graduate software engineer"
- "entry level software engineer"
- "junior software engineer"
- "associate software engineer"
- "campus graduate engineer"
- "new grad data scientist"
- "entry level data engineer"
- "junior data scientist"
# Generic GraphQL ingestion path for public careers endpoints
graphql:
enabled: false
max_jobs_per_source: 200
timeout: 6
sources:
# Example source (disabled by default)
- name: "Example GraphQL Careers"
endpoint: "https://careers.example.com/graphql"
query: |
query Careers($after: String) {
jobs(first: 50, after: $after) {
edges {
node {
title
applyUrl
postedAt
description
locations {
name
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
variables: {}
data_path: "data.jobs.edges"
page_info_path: "data.jobs.pageInfo"
field_mappings:
title: "title"
location: "locations.0.name"
url: "applyUrl"
posted_at: "postedAt"
description: "description"
# JobSpy - PARALLEL scraping from Indeed
# OPTIMIZED: LinkedIn disabled (429 rate limits waste ~4 min)
# Uses ThreadPoolExecutor with 25 workers for maximum speed
jobspy:
enabled: true
sites:
- "indeed"
# LinkedIn disabled - rate limited (429 errors), Indeed provides better coverage
search_terms:
# ===== GENERIC SEARCHES (catch-all) =====
- "new graduate software engineer"
- "entry level software engineer"
- "junior software engineer"
- "new grad data scientist"
- "entry level data engineer"
- "new grad 2025"
- "new grad 2026"
- "university graduate engineer"
- "campus hire software"
- "associate software engineer"
# ===== FAANG+ =====
- "Google new grad"
- "Amazon new grad"
- "Microsoft new grad"
- "Apple new grad"
- "Meta new grad"
- "Netflix new grad"
- "NVIDIA new grad"
- "Tesla new grad"
- "Adobe new grad"
- "Salesforce new grad"
- "Oracle new grad"
- "IBM new grad"
- "Intel new grad"
- "Cisco new grad"
- "Qualcomm new grad"
- "Uber new grad"
- "Lyft new grad"
- "PayPal new grad"
- "Visa new grad"
- "Mastercard new grad"
# ===== DEFENSE & AEROSPACE =====
- "Raytheon new grad"
- "RTX new grad"
- "Lockheed Martin new grad"
- "Boeing new grad"
- "Northrop Grumman new grad"
- "General Dynamics new grad"
- "L3Harris new grad"
- "Leidos new grad"
- "CACI new grad"
- "Peraton new grad"
- "Booz Allen new grad"
- "SAIC new grad"
- "Amentum new grad"
- "Blue Origin new grad"
- "Anduril new grad"
# ===== FINANCE & TRADING =====
- "Goldman Sachs new grad"
- "Morgan Stanley new grad"
- "JPMorgan new grad"
- "Bloomberg new grad"
- "Two Sigma new grad"
- "Citadel new grad"
- "Jane Street new grad"
- "DRW new grad"
- "Wells Fargo new grad"
- "Bank of America new grad"
- "Capital One new grad"
- "Fidelity new grad"
- "American Express new grad"
- "Travelers new grad"
- "Affirm new grad"
# ===== UNICORNS =====
- "TikTok new grad"
- "ByteDance new grad"
- "OpenAI new grad"
- "Anthropic new grad"
- "Databricks new grad"
- "Snowflake new grad"
- "Palantir new grad"
- "Scale AI new grad"
- "Figma new grad"
- "Notion new grad"
- "Discord new grad"
- "Snap new grad"
- "Roblox new grad"
- "DoorDash new grad"
- "Instacart new grad"
- "Cloudflare new grad"
- "Datadog new grad"
- "MongoDB new grad"
- "Samsara new grad"
- "Verkada new grad"
- "Glean new grad"
- "SpaceX new grad"
- "Rivian new grad"
# ===== CONSUMER TECH =====
- "Electronic Arts new grad"
- "Disney new grad"
- "Nike new grad"
- "Yahoo new grad"
- "Etsy new grad"
- "Chewy new grad"
- "Expedia new grad"
- "Fanatics new grad"
# ===== ENTERPRISE TECH =====
- "Intuit new grad"
- "Autodesk new grad"
- "HP new grad"
- "Honeywell new grad"
- "UiPath new grad"
- "Applied Intuition new grad"
- "Cerebras new grad"
# ===== HEALTHCARE =====
- "Medtronic new grad"
- "Boston Scientific new grad"
- "GE Healthcare new grad"
# ===== FINTECH =====
- "Robinhood new grad"
- "Coinbase new grad"
- "Plaid new grad"
- "Chime new grad"
- "Brex new grad"
- "SoFi new grad"
- "Upstart new grad"
# ===== CANADA-BASED COMPANIES =====
- "Shopify new grad"
- "Wealthsimple new grad"
- "Hootsuite new grad"
- "Clio new grad"
- "Lightspeed new grad"
- "Coveo new grad"
- "Thinkific new grad"
- "ApplyBoard new grad"
- "Klue new grad"
- "Clearbanc new grad"
# ===== INDIA-BASED COMPANIES =====
- "Flipkart new grad"
- "Zomato new grad"
- "Swiggy new grad"
- "Paytm new grad"
- "Razorpay new grad"
- "Zerodha new grad"
- "CRED new grad"
- "PhonePe new grad"
- "Myntra new grad"
- "Ola new grad"
- "Meesho new grad"
- "Groww new grad"
- "Freshworks new grad"
- "Zoho new grad"
- "Infosys new grad"
- "TCS new grad"
- "Wipro new grad"
- "HCL new grad"
# ===== INTERNATIONAL GENERIC =====
- "Canada new grad software engineer"
- "India new grad software engineer"
- "Toronto new grad software"
- "Vancouver new grad software"
- "Bangalore new grad software"
- "Hyderabad new grad software"
- "Mumbai new grad software"
# Countries to search - international job sourcing
countries:
- code: "USA"
location: "United States"
- code: "Canada"
location: "Canada"
- code: "India"
location: "India"
results_wanted: 30 # Reduced from 50 for faster responses
hours_old: 168
# Third-party job scraping APIs (configuration ready for future implementation)
scraper_apis:
# ScraperAPI - Handles proxy rotation, CAPTCHA solving, JS rendering
scraper_api:
enabled: false
api_key: "${SCRAPER_API_KEY}" # Set via environment variable
endpoints:
- "indeed.com"
- "linkedin.com/jobs"
- "glassdoor.com"
# SerpApi - Google Jobs API alternative
serp_api:
enabled: false
api_key: "${SERP_API_KEY}" # Set via environment variable
search_engine: "google_jobs"
location: "United States"
# Zyte (Scrapinghub) - Enterprise job scraping service
zyte:
enabled: false
api_key: "${ZYTE_API_KEY}" # Set via environment variable
project_id: "${ZYTE_PROJECT_ID}"
# Bright Data - Proxy network and job scraper API
bright_data:
enabled: false
username: "${BRIGHT_DATA_USERNAME}"
password: "${BRIGHT_DATA_PASSWORD}"
endpoint: "brd-customer-hl_username-zone-jobs"
# ScrapingBee - General web scraping API with AI extraction
scraping_bee:
enabled: false
api_key: "${SCRAPING_BEE_API_KEY}"
render_js: true
premium_proxy: true
# Workday integration configuration
workday:
enabled: true
page_limit: 20
max_jobs_per_company: 200
timeout: 6
companies:
- name: "Microsoft"
workday_url: "https://microsoft.wd10.myworkdayjobs.com/en-US/Microsoft"
- name: "TikTok"
workday_url: "https://bytedance.wd3.myworkdayjobs.com/TikTok"
- name: "Netflix"
workday_url: "https://netflix.wd5.myworkdayjobs.com/jobs"
- name: "Adobe"
workday_url: "https://adobe.wd5.myworkdayjobs.com/external_experienced"
- name: "Cisco"
workday_url: "https://cisco.wd1.myworkdayjobs.com/Cisco_Careers"
- name: "Oracle"
workday_url: "https://oracle.wd1.myworkdayjobs.com/Careers"
- name: "Salesforce"
workday_url: "https://salesforce.wd1.myworkdayjobs.com/Salesforce_Careers"
- name: "PayPal"
workday_url: "https://paypal.wd1.myworkdayjobs.com/jobs"
- name: "Mastercard"
workday_url: "https://mastercard.wd1.myworkdayjobs.com/CorporateCareers"
# ============================================
# EXPANSION: 40+ Additional Workday Companies
# ============================================
# --- Big Tech & Enterprise ---
- name: "NVIDIA"
workday_url: "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite"
- name: "Intel"
workday_url: "https://intel.wd1.myworkdayjobs.com/External"
- name: "AMD"
workday_url: "https://amd.wd1.myworkdayjobs.com/AMD"
- name: "Qualcomm"
workday_url: "https://qualcomm.wd5.myworkdayjobs.com/External"
- name: "SAP"
workday_url: "https://sap.wd1.myworkdayjobs.com/SAPCareers"
- name: "VMware"
workday_url: "https://vmware.wd1.myworkdayjobs.com/VMware"
- name: "Dell"
workday_url: "https://dell.wd1.myworkdayjobs.com/External"
- name: "HP"
workday_url: "https://hp.wd5.myworkdayjobs.com/ExternalCareerSite"
- name: "Lenovo"
workday_url: "https://lenovo.wd3.myworkdayjobs.com/Lenovo_Jobs"
- name: "ServiceNow"
workday_url: "https://servicenow.wd1.myworkdayjobs.com/servicenow"
- name: "Workday"
workday_url: "https://workday.wd5.myworkdayjobs.com/Workday"
- name: "Intuit"
workday_url: "https://intuit.wd5.myworkdayjobs.com/Intuit_Careers"
- name: "Autodesk"
workday_url: "https://autodesk.wd1.myworkdayjobs.com/Ext"
- name: "Splunk"
workday_url: "https://splunk.wd1.myworkdayjobs.com/splunk"
# --- Finance & Banking ---
- name: "JPMorgan"
workday_url: "https://jpmc.wd1.myworkdayjobs.com/JPMorgan_Careers"
- name: "Goldman Sachs"
workday_url: "https://goldmansachs.wd5.myworkdayjobs.com/GS_Careers"
- name: "Morgan Stanley"
workday_url: "https://morganstanley.wd5.myworkdayjobs.com/morganstanley"
- name: "Bank of America"
workday_url: "https://bankofamerica.wd1.myworkdayjobs.com/BofACareers"
- name: "Citi"
workday_url: "https://citi.wd5.myworkdayjobs.com/2"
- name: "Capital One"
workday_url: "https://capitalone.wd1.myworkdayjobs.com/Capital_One"
- name: "American Express"
workday_url: "https://americanexpress.wd5.myworkdayjobs.com/americanexpress"
- name: "Charles Schwab"
workday_url: "https://schws.wd1.myworkdayjobs.com/careers"
- name: "Fidelity"
workday_url: "https://fil.wd1.myworkdayjobs.com/external"
# --- Consulting & Professional Services ---
- name: "Booz Allen Hamilton"
workday_url: "https://bah.wd1.myworkdayjobs.com/BAH_Jobs"
- name: "Deloitte"
workday_url: "https://deloitte.wd1.myworkdayjobs.com/DeloitteCareers"
- name: "PwC"
workday_url: "https://pwc.wd1.myworkdayjobs.com/Global_Experienced_Careers"
- name: "EY"
workday_url: "https://ey.wd1.myworkdayjobs.com/EYCareers"
- name: "Accenture"
workday_url: "https://accenture.wd3.myworkdayjobs.com/AccentureCareers"
- name: "McKinsey"
workday_url: "https://mckinsey.wd3.myworkdayjobs.com/McKinsey_Externals"
- name: "BCG"
workday_url: "https://bcg.wd3.myworkdayjobs.com/BCGCareers"
# --- Healthcare & Pharma ---
- name: "Johnson & Johnson"
workday_url: "https://jnjc.wd5.myworkdayjobs.com/JNJC_External"
- name: "Pfizer"
workday_url: "https://pfizer.wd1.myworkdayjobs.com/PfizerCareers"
- name: "Merck"
workday_url: "https://merck.wd5.myworkdayjobs.com/Search"
- name: "AbbVie"
workday_url: "https://abbvie.wd5.myworkdayjobs.com/abbvie_careers"
- name: "Bristol Myers Squibb"
workday_url: "https://bms.wd1.myworkdayjobs.com/Careers"
- name: "UnitedHealth Group"
workday_url: "https://uhg.wd5.myworkdayjobs.com/uhg"
- name: "CVS Health"
workday_url: "https://cvshealth.wd1.myworkdayjobs.com/CVS_Health_Careers"
- name: "Medtronic"
workday_url: "https://medtronic.wd1.myworkdayjobs.com/MedtronicCareers"
# --- Retail & Consumer ---
- name: "Target"
workday_url: "https://target.wd5.myworkdayjobs.com/targetcareers"
- name: "Walmart"
workday_url: "https://walmart.wd5.myworkdayjobs.com/WalmartExternal"
- name: "Starbucks"
workday_url: "https://starbucks.wd5.myworkdayjobs.com/starbucks"
- name: "PepsiCo"
workday_url: "https://pepsico.wd1.myworkdayjobs.com/pepsico"
- name: "Procter & Gamble"
workday_url: "https://pg.wd1.myworkdayjobs.com/pg-careers"
# --- Aerospace & Defense ---
- name: "Lockheed Martin"
workday_url: "https://lockheedmartin.wd5.myworkdayjobs.com/search"
- name: "Northrop Grumman"
workday_url: "https://ngc.wd1.myworkdayjobs.com/Northrop_Grumman_External_Site"
- name: "Raytheon"
workday_url: "https://rtx.wd1.myworkdayjobs.com/RTX"
- name: "General Dynamics"