-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb.json
1386 lines (1386 loc) · 51 KB
/
db.json
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
{
"user": [
{
"id": 1,
"full_name": "user user",
"email": "[email protected]",
"pass": "123123"
},
{
"full_name": "test1",
"email": "[email protected]",
"pass": "test123123",
"id": 2
},
{
"full_name": "dpk",
"email": "[email protected]",
"pass": "123123",
"id": 3
},
{
"full_name": "Shubham verma",
"email": "[email protected]",
"pass": "123",
"id": 4
},
{
"full_name": "Admin",
"email": "[email protected]",
"pass": "123",
"id": 5
}
],
"recruiter": [
{
"id": 1,
"full_name": "test test",
"email": "[email protected]",
"pass": "123123123"
},
{
"full_name": "rec deependra",
"email": "[email protected]",
"pass": "rec123123",
"id": 2
},
{
"full_name": "deepak",
"email": "[email protected]",
"pass": "123123",
"id": 3
},
{
"full_name": "shubham verma",
"email": "[email protected]",
"pass": "123",
"id": 4
}
],
"company": [
{
"id": 1,
"name": "Moveworks",
"desc": "Instant help at work",
"employees": "201-500 EMPLOYEES",
"image": "https://photos.angel.co/startups/i/6899437-cf011492eafda08309550576aa859b8b-medium_jpg.jpg?buster=1626384757",
"job": "Front-End Developer ",
"location": "Mumbai",
"salaryMin": 4,
"salaryMax": 10
},
{
"id": 2,
"name": "Amberstudent",
"desc": "Long-term accommodation booking platform for students",
"employees": "51-200 EMPLOYEES",
"image": "https://photos.angel.co/startups/i/2599012-8f09b4519134649d6a37dbd52e1de3c2-medium_jpg.jpg?buster=1594300525",
"job": "Front-End Developer ",
"location": "Mumbai",
"salaryMin": 3,
"salaryMax": 8
},
{
"id": 3,
"name": "SuperTokens",
"desc": "SuperTokens (YC S20) is an open source alternative to Auth0 / Firebase Auth / AWS Cognito",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7138999-477596e1a50204b35d58b65e5b0561a4-medium_jpg.jpg?buster=1566286037",
"job": "Fullstack Engineer",
"location": "India • United States • United Kingdom • Remote possible",
"salaryMin": 5,
"salaryMax": 12
},
{
"id": 4,
"name": "Jackfruit",
"desc": "Simplifying the jargon behind, & enabling Indians to understand & manage Personal Finance",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/3196833-6cf6d64bec34de8642f61364a9151dbf-medium_jpg.jpg?buster=1567579436",
"job": "Fullstack engineer",
"location": "Mumbai • Remote possible",
"salaryMin": 4,
"salaryMax": 10
},
{
"id": 5,
"name": "Equity Data Science",
"desc": "Quantitative Analytics for Fundamental Investors",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8406198-85d0c8e99b0799527046e2af3d54367c-medium_jpg.jpg?buster=1625001369",
"job": "Fullstack Engineer",
"location": "Mumbai",
"salaryMin": 8,
"salaryMax": 14
},
{
"id": 6,
"name": "Arbaan GT",
"desc": "A Software service firm Specialised in INTEGRATION AS A SERVICE",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/4060090-8feb66c742933c6999849b7bb5ec02bd-medium_jpg.jpg?buster=1600756523",
"job": "Senior Full-Stack Developer",
"location": "Chennai",
"salaryMin": 2,
"salaryMax": 5
},
{
"id": 7,
"name": "Typeset",
"desc": "Google Docs For Research. Join us if you want to solve Challenging Technology problems!",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/517943-03ae92ca8a409131651b57a1da8f48c6-medium_jpg.jpg?buster=1466089412",
"job": "Senior FullStack Engineer (4+ Years experience)",
"location": "Bengaluru • Remote possible",
"salaryMin": 8,
"salaryMax": 14
},
{
"id": 8,
"name": "Teknuance Info Solutions",
"desc": "Cognition Driven Enterprise AI",
"employees": "51-200 employees",
"image": "https://photos.angel.co/startups/i/3196833-6cf6d64bec34de8642f61364a9151dbf-medium_jpg.jpg?buster=1567579436",
"job": "Senior Fullstack Engineer",
"location": "Chennai • Remote possible",
"salaryMin": 5,
"salaryMax": 12
},
{
"id": 9,
"name": "HRvisory",
"desc": "We make it easier for start-ups to handle their HR challenges!",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8296277-0dbdb640af062212888325b86ad126f6-medium_jpg.jpg?buster=1618646477",
"job": "Information Technology Lead - Consumer Durable brand",
"location": "Bengaluru",
"salaryMin": 4,
"salaryMax": 10
},
{
"id": 10,
"name": "Aspire App",
"desc": "The new age professional network",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8069209-7be0af482378ac82332fa1195f8b5722-medium_jpg.jpg?buster=1605411684",
"job": "FullStack Software Engineer",
"location": "India • Remote possible",
"salaryMin": 4,
"salaryMax": 10
},
{
"id": 11,
"name": "Neverinstall",
"desc": "A powerful platform for accessing desktop applications through the browser",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7298420-ebad72dd9824b70d90369658d6ffba8c-medium_jpg.jpg?buster=1622446957",
"job": "Full Stack Developer (React,Node,Graphql)",
"location": "Bengaluru • Remote possible",
"salaryMin": 3,
"salaryMax": 8
},
{
"id": 12,
"name": "Trailer Travel",
"desc": "See the movie by yourself",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7776523-bcdd744e24fd9c410298b24e9aaec3e4-medium_jpg.jpg?buster=1592508487",
"job": "Full Stack Product Engineer",
"location": "Gurgaon",
"salaryMin": 4,
"salaryMax": 10
},
{
"id": 13,
"name": "AmberStudent",
"desc": "Long-term accommodation booking platform for students",
"employees": "51-200 employees",
"image": "https://photos.angel.co/startups/i/2599012-8f09b4519134649d6a37dbd52e1de3c2-medium_jpg.jpg?buster=1594300525",
"job": "Front-End Developer",
"location": "Remote possible",
"salaryMin": 4,
"salaryMax": 10
},
{
"id": 14,
"name": "SuperTokens",
"desc": "SuperTokens (YC S20) is an open source alternative to Auth0 / Firebase Auth / AWS Cognito",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7138999-477596e1a50204b35d58b65e5b0561a4-medium_jpg.jpg?buster=1566286037",
"job": "Fullstack Engineer",
"location": "India • United States • United Kingdom • Remote possible",
"salaryMin": 5,
"salaryMax": 12
},
{
"id": 15,
"name": "Jackfruit",
"desc": "Simplifying the jargon behind, & enabling Indians to understand & manage Personal Finance",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/3196833-6cf6d64bec34de8642f61364a9151dbf-medium_jpg.jpg?buster=1567579436",
"job": "Fullstack engineer",
"location": "Mumbai • Remote possible",
"salaryMin": 8,
"salaryMax": 14
},
{
"id": 16,
"name": "Equity Data Science",
"desc": "Quantitative Analytics for Fundamental Investors",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8406198-85d0c8e99b0799527046e2af3d54367c-medium_jpg.jpg?buster=1625001369",
"job": "Fullstack Engineer",
"location": "Mumbai",
"salaryMin": 10,
"salaryMax": 18
},
{
"id": 17,
"name": "Arbaan GT",
"desc": "A Software service firm Specialised in INTEGRATION AS A SERVICE",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/4060090-8feb66c742933c6999849b7bb5ec02bd-medium_jpg.jpg?buster=1600756523",
"job": "Senior Full-Stack Developer",
"location": "Chennai",
"salaryMin": 3,
"salaryMax": 8
},
{
"id": 18,
"name": "Typeset",
"desc": "Google Docs For Research. Join us if you want to solve Challenging Technology problems!",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/517943-03ae92ca8a409131651b57a1da8f48c6-medium_jpg.jpg?buster=1466089412",
"job": "Senior FullStack Engineer (4+ Years experience)",
"location": "Bengaluru • Remote possible",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 19,
"name": "Teknuance Info Solutions",
"desc": "Cognition Driven Enterprise AI",
"employees": "51-200 employees",
"image": "https://photos.angel.co/startups/i/3196833-6cf6d64bec34de8642f61364a9151dbf-medium_jpg.jpg?buster=1567579436",
"job": "Senior Fullstack Engineer",
"location": "Chennai • Remote possible",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 20,
"name": "HRvisory",
"desc": "We make it easier for start-ups to handle their HR challenges!",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8296277-0dbdb640af062212888325b86ad126f6-medium_jpg.jpg?buster=1618646477",
"job": "Information Technology Lead - Consumer Durable brand",
"location": "Bengaluru",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 21,
"name": "Aspire App",
"desc": "The new age professional network",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8069209-7be0af482378ac82332fa1195f8b5722-medium_jpg.jpg?buster=1605411684",
"job": "FullStack Software Engineer",
"location": "India • Remote possible",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 22,
"name": "Neverinstall",
"desc": "A powerful platform for accessing desktop applications through the browser",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7298420-ebad72dd9824b70d90369658d6ffba8c-medium_jpg.jpg?buster=1622446957",
"job": "Full Stack Developer (React,Node,Graphql)",
"location": "Bengaluru • Remote possible",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 23,
"name": "Trailer Travel",
"desc": "See the movie by yourself",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7776523-bcdd744e24fd9c410298b24e9aaec3e4-medium_jpg.jpg?buster=1592508487",
"job": "Full Stack Product Engineer",
"location": "Gurgaon",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 24,
"name": "AmberStudent",
"desc": "Long-term accommodation booking platform for students",
"employees": "51-200 employees",
"image": "https://photos.angel.co/startups/i/2599012-8f09b4519134649d6a37dbd52e1de3c2-medium_jpg.jpg?buster=1594300525",
"job": "Front-End Developer",
"location": "Remote possible",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 25,
"name": "SuperTokens",
"desc": "SuperTokens (YC S20) is an open source alternative to Auth0 / Firebase Auth / AWS Cognito",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7138999-477596e1a50204b35d58b65e5b0561a4-medium_jpg.jpg?buster=1566286037",
"job": "Fullstack Engineer",
"location": "India • United States • United Kingdom • Remote possible",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 26,
"name": "Jackfruit",
"desc": "Simplifying the jargon behind, & enabling Indians to understand & manage Personal Finance",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8295172-960452e71cd236fedb2c40013393af3f-medium_jpg.jpg?buster=1618569091",
"job": "Fullstack engineer",
"location": "Mumbai • Remote possible",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 27,
"name": "Equity Data Science",
"desc": "Quantitative Analytics for Fundamental Investors",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8406198-85d0c8e99b0799527046e2af3d54367c-medium_jpg.jpg?buster=1625001369",
"job": "Fullstack Engineer",
"location": "Mumbai",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 28,
"name": "Arbaan GT",
"desc": "A Software service firm Specialised in INTEGRATION AS A SERVICE",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/4060090-8feb66c742933c6999849b7bb5ec02bd-medium_jpg.jpg?buster=1600756523",
"job": "Senior Full-Stack Developer",
"location": "Chennai",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 29,
"name": "Typeset",
"desc": "Google Docs For Research. Join us if you want to solve Challenging Technology problems!",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/517943-03ae92ca8a409131651b57a1da8f48c6-medium_jpg.jpg?buster=1466089412",
"job": "Senior FullStack Engineer (4+ Years experience)",
"location": "Bengaluru • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 30,
"name": "Teknuance Info Solutions",
"desc": "Cognition Driven Enterprise AI",
"employees": "51-200 employees",
"image": "https://photos.angel.co/startups/i/3196833-6cf6d64bec34de8642f61364a9151dbf-medium_jpg.jpg?buster=1567579436",
"job": "Senior Fullstack Engineer",
"location": "Chennai • Remote possible",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 31,
"name": "HRvisory",
"desc": "We make it easier for start-ups to handle their HR challenges!",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8296277-0dbdb640af062212888325b86ad126f6-medium_jpg.jpg?buster=1618646477",
"job": "Information Technology Lead - Consumer Durable brand",
"location": "Bengaluru",
"salaryMin": 8,
"salaryMax": 18
},
{
"id": 32,
"name": "Aspire App",
"desc": "The new age professional network",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8069209-7be0af482378ac82332fa1195f8b5722-medium_jpg.jpg?buster=1605411684",
"job": "FullStack Software Engineer",
"location": "India • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 33,
"name": "Neverinstall",
"desc": "A powerful platform for accessing desktop applications through the browser",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7298420-ebad72dd9824b70d90369658d6ffba8c-medium_jpg.jpg?buster=1622446957",
"job": "Full Stack Developer (React,Node,Graphql)",
"location": "Bengaluru • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 34,
"name": "Trailer Travel",
"desc": "See the movie by yourself",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7776523-bcdd744e24fd9c410298b24e9aaec3e4-medium_jpg.jpg?buster=1592508487",
"job": "Full Stack Product Engineer",
"location": "Gurgaon",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 35,
"name": "Moveworks",
"desc": "Instant help at work",
"employees": "201-500 employees",
"image": "https://photos.angel.co/startups/i/6899437-cf011492eafda08309550576aa859b8b-medium_jpg.jpg?buster=1626384757",
"job": "Software Engineer, Data Platform",
"location": "",
"salaryMin": 8,
"salaryMax": 18
},
{
"id": 36,
"name": "ShujaBITS Infotech Solutions",
"desc": "Building innovative software products for start-ups in niche domains",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8041883-469eb5587bb7aedcf1520cb10213b96e-medium_jpg.jpg?buster=1603783727",
"job": "ReactJS-Python/Django-MySQL Developers - All levels",
"location": "Mumbai • Remote possible",
"salaryMin": 8,
"salaryMax": 18
},
{
"id": 37,
"name": "ForeignAdmits",
"desc": "AI enabled, mentors assisted higher education guidance platform for international students",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/5095351-c838f1c11c1011456d20d0b16f781825-medium_jpg.jpg?buster=1514422150",
"job": "Full Stack Developer",
"location": "Bengaluru",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 38,
"name": "Jalan Technology Consulting (JTC)",
"desc": "Software Development Company",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/3164311-c95c73644e6a89dcb21636826e17c1ae-medium_jpg.jpg?buster=1595072938",
"job": "Senior Software Engineer (Node JS & React)",
"location": "Bengaluru • Hyderabad",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 39,
"name": "Innerkore Technologies",
"desc": "Marketing tools for rest of the world",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7669888-62301e5dd2bf95a5cd5d500bb432086f-medium_jpg.jpg?buster=1593070284",
"job": "Full Stack Developer: Nodejs/React",
"location": "Delhi • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 40,
"name": "DOJOKO",
"desc": "Where students unite (Connect Collaborate Communicate)",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8250819-fd137b90d7fb68c4802861650c2fe0eb-medium_jpg.jpg?buster=1626864336",
"job": "NodeJs developer",
"location": "Bengaluru • Remote possible",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 41,
"name": "Loop Health",
"desc": "Excellent health benefits for modern Indian companies (Y Combinator W20)",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/1525408-6e81aff9d010a6b079c826e3acef0664-medium_jpg.jpg?buster=1619030096",
"job": "React Native Developer",
"location": "Pune • Remote possible",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 42,
"name": "Melluli Technologies",
"desc": "We enable businesses to innovate and adapt newer technologies and be successful",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/6585403-35a0d7cbc9d9b7d99dfd24037650873a-medium_jpg.jpg?buster=1542388574",
"job": "Full Stack Developer - NodeJS and Vue.js",
"location": "Bengaluru",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 43,
"name": "revirt.space",
"desc": "We are a platform that gamifies the spontaneity of the real world in the virtual world",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8415912-f5c7f917d4e9e75590ec142b6c1c0731-medium_jpg.jpg?buster=1625673909",
"job": "Full Stack Developer",
"location": "Bengaluru",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 44,
"name": "ToolJet",
"desc": "Open-source no-code platform to build and deploy custom internal applications",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8331267-8abd0af44d23a30ddc74d2d879017ba4-medium_jpg.jpg?buster=1625499181",
"job": "Senior full-stack engineer",
"location": "Bengaluru • Remote possible",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 45,
"name": "Inflection.io",
"desc": "Building marketing technology for product-led growth",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8242706-93e6e1ee543fda2d706361eb9416250e-medium_jpg.jpg?buster=1615761569",
"job": "Senior Full Stack Engineer",
"location": "Bengaluru • Kochi • Chennai",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 46,
"name": "Quoality",
"desc": "Ancillary Services Management platform for Hotels",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8162453-81503532cdeed886ebe5e21958ef510a-medium_jpg.jpg?buster=1611301883",
"job": "Full Stack Developer",
"location": "India • Remote possible",
"salaryMin": 8,
"salaryMax": 18
},
{
"id": 47,
"name": "LeadSquared",
"desc": "LeadSquared is a leading Sales Execution and Marketing Automation platform",
"employees": "501-1000 employees",
"image": "https://photos.angel.co/startups/i/342875-64fbce6d1cbc9a6113edb345a06ed12b-medium_jpg.jpg?buster=1565589705",
"job": "Senior Software Engineer - Professional Services",
"location": "Bengaluru",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 48,
"name": "Haasyl",
"desc": "We help India's workforce access their pay-check as they earn it. Your pay, your way!",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8070304-0c74708828aa9ecfd70116c5eb696f7b-medium_jpg.jpg?buster=1613030889",
"job": "Full Stack Developer",
"location": "Mumbai • Remote possible",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 49,
"name": "Ecozen",
"desc": "",
"employees": "201-500 employees",
"image": "https://photos.angel.co/startups/i/276580-d35fb663340129112975b571166aac83-medium_jpg.jpg?buster=1610034664",
"job": "Nodejs Developer",
"location": "Pune",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 50,
"name": "ETHER MEDICARE",
"desc": "We are Ether Medicare – your female tech healthcare companion for life",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8414583-daa7cac73abaaf47574a0898ecf2c258-medium_jpg.jpg?buster=1625592374",
"job": "Full stack Developer",
"location": "Delhi",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 51,
"name": "Unify Technologies",
"desc": "Digital Engineering - Product Development",
"employees": "501-1000 employees",
"image": "https://photos.angel.co/startups/i/5255094-e88a4467879f53508ebd4a121354c7d3-medium_jpg.jpg?buster=1562737501",
"job": "Java Full-Stack Developer",
"location": "Hyderabad",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 52,
"name": "Harivara",
"desc": "Your Vedic Partner !",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/1064492-9408627bd924c59e54655dc9da8d6c40-medium_jpg.jpg?buster=1484777357",
"job": "React & Next JS Developer with 1-2+ Yrs Exp.",
"location": "Bengaluru",
"salaryMin": 8,
"salaryMax": 18
},
{
"id": 53,
"name": "Flyo",
"desc": "Instant delivery platform for premium essentials",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8409231-ed8b4c320064889fd24b60cb0ceef278-medium_jpg.jpg?buster=1625165179",
"job": "Part time: Full Stack Engineer",
"location": "Bengaluru • Remote possible",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 54,
"name": "Aircampus",
"desc": "Redefining college education to guarantee placement",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8092596-d4a745cdf3f8439dad9b18ac665422a2-medium_jpg.jpg?buster=1606916114",
"job": "Seeking a JavaScript Mentor, Trainer & Startup Hustler - (Extraordinair Developer & Mentor)",
"location": "Bengaluru • Remote possible",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 55,
"name": "Mandelbulb Technologies",
"desc": "AI Solution provider & Big Data Experts",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8416896-45b2e230cddbe8c57133fa9d8a3c3fc7-medium_jpg.jpg?buster=1625723096",
"job": ".NET Core Full Stack Developer",
"location": "India • Remote possible",
"salaryMin": 3,
"salaryMax": 18
},
{
"id": 56,
"name": "Xoxoday",
"desc": "A SaaS platform to align, engage, reward & recognize employees & channel partners",
"employees": "201-500 employees",
"image": "https://photos.angel.co/startups/i/988574-fa5b4d8fbb41a72fa9f89110ad67410b-medium_jpg.jpg?buster=1564392401",
"job": "Senior Fullstack Developer - Plum",
"location": "Singapore • Bengaluru • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 57,
"name": "CurioGenesis Tech Labs",
"desc": "Towards a Sustainable Future",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/8340269-5b6f6ddce5c8af543f1697f2648d38b5-medium_jpg.jpg?buster=1621230584",
"job": "Full Stack Web Developer",
"location": "Pune",
"salaryMin": 12,
"salaryMax": 18
},
{
"id": 58,
"name": "HealthifyMe Wellness",
"desc": "India and South East Asia's largest and most loved health & fitness app",
"employees": "1001-5000 employees",
"image": "https://photos.angel.co/startups/i/205988-ba3538ef1d41ffdd714c04064cabe72f-medium_jpg.jpg?buster=1545905761",
"job": "Full Stack Developer",
"location": "Bengaluru",
"salaryMin": 10,
"salaryMax": 18
},
{
"id": 59,
"name": "Transform Automations India Private",
"desc": "Products to simplify and automate Business processes for SMEs",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7483885-6991ff11d8890ca5e0bfd18c7aeabe69-medium_jpg.jpg?buster=1581411232",
"job": "Full Stack Developer",
"location": "Bengaluru • Remote possible",
"salaryMin": 12,
"salaryMax": 18
},
{
"id": 60,
"name": "Gambit Sports Pvt. Ltd.",
"desc": "Nostragamus.in - Real money, Mobile first, Skill games platform",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/778789-f43096b3cc306ea248d1735c98ebb896-medium_jpg.jpg?buster=1590920727",
"job": "Full stack developer MERN stack",
"location": "Bangalore Urban • Bengaluru • Remote possible",
"salaryMin": 15,
"salaryMax": 18
},
{
"id": 61,
"name": "Nexxio Technologies",
"desc": "Digital SaaS platform to automate & enable b2b sales operations of a consumer goods enterprise",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/6715093-9a24cab1ad923714671a8860757fb1ba-medium_jpg.jpg?buster=1546592784",
"job": "Junior Full Stack Developer",
"location": "Bengaluru",
"salaryMin": 15,
"salaryMax": 18
},
{
"id": 62,
"name": "Ymirlabs",
"desc": "We build companies",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7304372-897fad34b0df25e535ade27d0e485b9b-medium_jpg.jpg?buster=1595411896",
"job": "Full Stack Engineer",
"location": "India • Norway • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 63,
"name": "Richpanel",
"desc": "Re-imagining Customer Support!",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/5539190-fb8bef4238e15c69e23dac89a8dabf96-medium_jpg.jpg?buster=1566389181",
"job": "Full Stack Developer (MEVN-Stack / MERN-Stack / Javascript Fullstack)",
"location": "Mumbai • Remote possible",
"salaryMin": 8,
"salaryMax": 18
},
{
"id": 64,
"name": "Aptagrim Consulting",
"desc": "Turn DATA into INFORMATION and INSIGHTS",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/5573571-c96c5ce1decd347753cec42adc4f65f7-medium_jpg.jpg?buster=1523264218",
"job": "MERN Stack Developer",
"location": "Hyderabad",
"salaryMin": 7,
"salaryMax": 18
},
{
"id": 65,
"name": "Fynd",
"desc": "Fresh Fashion, Straight From Brand Stores",
"employees": "201-500 employees",
"image": "https://photos.angel.co/startups/i/138760-094c87a9f18958a289a74936b35a9b1b-medium_jpg.jpg?buster=1529063997",
"job": "Principal Engineer: Fullstack Python",
"location": "Mumbai • Remote possible",
"salaryMin": 10,
"salaryMax": 18
},
{
"id": 66,
"name": "SiteRecon",
"desc": "Platform to survey properties remotely",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7710557-b437027f6c9c25212da7575d39c38010-medium_jpg.jpg?buster=1604668667",
"job": "Full Stack Developer",
"location": "Noida",
"salaryMin": 10,
"salaryMax": 18
},
{
"id": 67,
"name": "Get Safle",
"desc": "Easing Adoption for Blockchain Applications",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7335183-3f6ac4f8d616accdb6e3d08afb1db403-medium_jpg.jpg?buster=1619510352",
"job": "Software Developer - Full Stack",
"location": "Gurgaon",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 68,
"name": "Delightree",
"desc": "The future of franchise operations",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7627625-d3ecf4e5d2960484d1a53a7978e0b94f-medium_jpg.jpg?buster=1586878502",
"job": "Senior Fullstack Developer",
"location": "India • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 69,
"name": "Mapsense",
"desc": "Building Location Intelligence apps",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/5041202-25833ac097f5eead992fd2efcb79c429-medium_jpg.jpg?buster=1566411325",
"job": "Engineering Leader",
"location": "Gurgaon • Remote possible",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 70,
"name": "Advenio",
"desc": "We create reliable and accessible diagnostic tools using AI",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7286027-ae23ac870500ab1ae6e61b22c92d9046-medium_jpg.jpg?buster=1572502501",
"job": "Full Stack Developer (MERN Stack)",
"location": "Gurgaon • Chandigarh • Remote possible",
"salaryMin": 4,
"salaryMax": 18
},
{
"id": 71,
"name": "Growthfile",
"desc": "Digital Property Manager - Tenant portal, AI supervisor, E-invoicing",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/4754391-d1d1aa575916565cdbd60ec808e6df0b-medium_jpg.jpg?buster=1566514391",
"job": "Full stack developer",
"location": "South Delhi • Remote possible",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 72,
"name": "Custiv",
"desc": "On-Demand Manufacturing platform",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7801546-42d52467712a2a70ffd8929f37c9ba20-medium_jpg.jpg?buster=1593494193",
"job": "Full Stack Engineer",
"location": "Bengaluru • Remote possible",
"salaryMin": 6,
"salaryMax": 18
},
{
"id": 73,
"name": "The Internet Folks",
"desc": "We help various startups and companies test ideas via rapid implementation and prototyping",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/8175432-79af27e2af85499393e46b4592feca80-medium_jpg.jpg?buster=1612007977",
"job": "Senior NodeJS Developer",
"location": "India • Bhopal • Madhya Pradesh",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 74,
"name": "Slintel",
"desc": "Use Slintel to identify the best selling opportunities that you can reach out to today",
"employees": "51-200 employees",
"image": "https://photos.angel.co/startups/i/3321256-a5f2f3dfab811efa3c3ccec6c8e767b9-medium_jpg.jpg?buster=1625666778",
"job": "Web Developer",
"location": "Bengaluru",
"salaryMin": 5,
"salaryMax": 18
},
{
"id": 75,
"name": "Skylark Drones",
"desc": "Our mission is to unlock the economic potential of the skies",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/750201-7e1eae8705e566fd1b44999582be236e-medium_jpg.jpg?buster=1510318420",
"job": "Full stack developer",
"location": "Bengaluru • Remote possible",
"salaryMin": 10,
"salaryMax": 18
},
{
"id": 76,
"name": "SWIRL®",
"desc": "Go Live Sell More",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/1076895-9544f693295347c9e3feafb0b43e025d-medium_jpg.jpg?buster=1625823979",
"job": "Full Stack Developer",
"location": "Vadodara • Mumbai • Remote possible",
"salaryMin": 10,
"salaryMax": 18
},
{
"id": 77,
"name": "FinancePeer",
"desc": "Financepeer is an Education Fintech making quality education easy and affordable",
"employees": "201-500 employees",
"image": "https://photos.angel.co/startups/i/4902227-9bec744223b68667171cb1c8d6099365-medium_jpg.jpg?buster=1605806007",
"job": "Full Stack Developer",
"location": "Hyderabad • Mumbai • Bengaluru • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 78,
"name": "QuillBot",
"desc": "Writing Made Painless",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/5327349-8effc66c6542e606f41dac106edadde7-medium_jpg.jpg?buster=1571778825",
"job": "Senior Full Stack Engineer",
"location": "Jaipur • Remote possible",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 79,
"name": "SalesBlink",
"desc": "Full Stack Cold Outreach Platform",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7853161-9d71e1a03b5c255937d36986a736a752-medium_jpg.jpg?buster=1604478744",
"job": "Senior Full Stack Developer (Remote)",
"location": "Delhi • Noida • New Delhi • Remote possible",
"salaryMin": 9,
"salaryMax": 18
},
{
"id": 80,
"name": "mesha",
"desc": "A new way of investing",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/6954841-038120cbe220408c66588899056cc0b5-medium_jpg.jpg?buster=1626842706",
"job": "Full Stack Developer",
"location": "Gurgaon • Remote possible",
"salaryMin": 10,
"salaryMax": 18
},
{
"id": 81,
"name": "VP Delivery Services",
"desc": "APP based modernized hyperlocal same-day delivery service",
"employees": "1-10 employees",
"image": "https://photos.angel.co/startups/i/7440998-1962d05bec8023f818eaf1982d9cd4cd-medium_jpg.jpg?buster=1626795133",
"job": "Full Stack Developer",
"location": "Mumbai",
"salaryMin": 12,
"salaryMax": 18
},
{
"id": 82,
"name": "Biconomy",
"desc": "Stripe for crypto",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/7139305-345b2a2e1a639bae413d3ab4ede2f628-medium_jpg.jpg?buster=1599329162",
"job": "Full Stack Engineer",
"location": "Europe • India • Singapore • Remote possible",
"salaryMin": 12,
"salaryMax": 18
},
{
"id": 83,
"name": "Vizmo",
"desc": "Enhancing workplace experience",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/5794763-1ac845f4d03956f5a961a9a170735d03-medium_jpg.jpg?buster=1626762796",
"job": "Backend / Fullstack developer",
"location": "Bengaluru • Remote possible",
"salaryMin": 15,
"salaryMax": 18
},
{
"id": 84,
"name": "FireVisor Systems",
"desc": "Self-aware factories",
"employees": "11-50 employees",
"image": "https://photos.angel.co/startups/i/5578357-6e75a2a87847412af76e9954d806ac14-medium_jpg.jpg?buster=1523330021",
"job": "Remote Full-Stack Developer",
"location": "India • Philippines • Vietnam • Remote possible",
"salaryMin": 15,
"salaryMax": 18
},
{
"id": 85,
"name": "Masai School",
"desc": "Coding school that makes you employable",
"employees": "51-200 employees",
"image": "https://photos.angel.co/startups/i/6866292-975d1e3ad361c1b6c3b2635a9e5e169b-medium_jpg.jpg?buster=1554195286",
"job": "SDE- 3 MERN Instructor - 3+ years experience required",
"location": "India • Bengaluru",
"salaryMin": 2,
"salaryMax": 18
},
{
"id": 86,
"name": "Stylabs Technologies",
"desc": "An innovation studio in Mumbai",
"employees": "11-50 employees",