@scrapecreators/cli 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,991 @@
1
+ export const githubApis = {
2
+ id: "github",
3
+ name: "GitHub",
4
+ description: "Scrape GitHub profiles, repositories, and public activity",
5
+ endpoints: [
6
+ {
7
+ name: "User",
8
+ method: "GET",
9
+ description:
10
+ "Get public GitHub user details for a user. Pass username, handle, or url.",
11
+ fullDescription:
12
+ "Retrieves public GitHub user details including name, bio, avatar, company, location, blog, follower counts, public repo counts, and account timestamps. Pass username, handle, or a full GitHub user url.",
13
+ path: "/v1/github/user",
14
+ sampleResponse: {
15
+ "success": true,
16
+ "credits_remaining": 49997685116,
17
+ "id": 1024025,
18
+ "node_id": "MDQ6VXNlcjEwMjQwMjU=",
19
+ "login": "torvalds",
20
+ "name": "Linus Torvalds",
21
+ "company": "Linux Foundation",
22
+ "blog": "",
23
+ "location": "Portland, OR",
24
+ "email": null,
25
+ "bio": null,
26
+ "twitter_username": null,
27
+ "avatar_url": "https://avatars.githubusercontent.com/u/1024025?v=4",
28
+ "url": "https://github.com/torvalds",
29
+ "type": "User",
30
+ "site_admin": false,
31
+ "public_repos": 11,
32
+ "public_gists": 1,
33
+ "followers": 303973,
34
+ "following": 0,
35
+ "created_at": "2011-09-03T15:26:22Z",
36
+ "updated_at": "2026-01-13T07:10:05Z"
37
+ },
38
+ params: [
39
+ {
40
+ name: "handle",
41
+ type: "string",
42
+ required: false,
43
+ placeholder: "torvalds",
44
+ description: "GitHub username/handle of the user you want the details for",
45
+ },
46
+ {
47
+ name: "url",
48
+ type: "string",
49
+ required: false,
50
+ description: "GitHub user URL, e.g. https://github.com/torvalds.",
51
+ placeholder: "https://github.com/torvalds",
52
+ },
53
+ ],
54
+ },
55
+ {
56
+ name: "Repositories",
57
+ method: "GET",
58
+ description:
59
+ "Get public repositories for a GitHub user. Supports pagination and GitHub's repo sorting options.",
60
+ fullDescription:
61
+ "Retrieves a user's public repositories with repo metadata like description, language, stars, forks, topics, license, visibility, default branch, and timestamps. Pass username, handle, or url. Supports pagination with cursor, plus GitHub's type, sort, and direction parameters.",
62
+ path: "/v1/github/user/repositories",
63
+ params: [
64
+ {
65
+ name: "handle",
66
+ type: "string",
67
+ required: false,
68
+ placeholder: "torvalds",
69
+ description: "GitHub username/handle of the user you want the repositories for",
70
+ },
71
+ {
72
+ name: "url",
73
+ type: "string",
74
+ required: false,
75
+ description: "GitHub user URL, e.g. https://github.com/kentcdodds.",
76
+ placeholder: "https://github.com/kentcdodds",
77
+ },
78
+ {
79
+ name: "type",
80
+ type: "select",
81
+ required: false,
82
+ description: "Repository type. Defaults to owner. GitHub also supports all and member.",
83
+ placeholder: "owner",
84
+ options: ["owner", "all", "member"],
85
+ },
86
+ {
87
+ name: "sort",
88
+ type: "select",
89
+ required: false,
90
+ description: "Sort by created, updated, pushed, or full_name. Defaults to updated.",
91
+ placeholder: "updated",
92
+ options: ["created", "updated", "pushed", "full_name"],
93
+ },
94
+ {
95
+ name: "direction",
96
+ type: "select",
97
+ required: false,
98
+ description: "Sort direction: ascending or descending.",
99
+ placeholder: "desc",
100
+ options: ["asc", "desc"],
101
+ },
102
+ {
103
+ name: "cursor",
104
+ type: "number",
105
+ required: false,
106
+ description: "Cursor from the previous response. Defaults to 1.",
107
+ placeholder: 1,
108
+ },
109
+ ],
110
+ sampleResponse: {
111
+ "success": true,
112
+ "credits_remaining": 49997684739,
113
+ "repositories": [
114
+ {
115
+ "id": 320393623,
116
+ "node_id": "MDEwOlJlcG9zaXRvcnkzMjAzOTM2MjM=",
117
+ "name": "kentcdodds.com",
118
+ "full_name": "kentcdodds/kentcdodds.com",
119
+ "owner": {
120
+ "id": 1500684,
121
+ "login": "kentcdodds",
122
+ "avatar_url": "https://avatars.githubusercontent.com/u/1500684?v=4",
123
+ "url": "https://github.com/kentcdodds",
124
+ "type": "User"
125
+ },
126
+ "private": false,
127
+ "url": "https://github.com/kentcdodds/kentcdodds.com",
128
+ "description": "My personal website",
129
+ "fork": false,
130
+ "homepage": "https://kentcdodds.com",
131
+ "language": "MDX",
132
+ "forks_count": 654,
133
+ "stars_count": 2485,
134
+ "watchers_count": 2485,
135
+ "size": 53677,
136
+ "default_branch": "main",
137
+ "open_issues_count": 4,
138
+ "topics": [
139
+ "kentcdodds",
140
+ "oss",
141
+ "prisma",
142
+ "react",
143
+ "remix",
144
+ "sqlite",
145
+ "typescript",
146
+ "website"
147
+ ],
148
+ "license": {
149
+ "key": "other",
150
+ "name": "Other",
151
+ "spdx_id": "NOASSERTION"
152
+ },
153
+ "archived": false,
154
+ "disabled": false,
155
+ "visibility": "public",
156
+ "pushed_at": "2026-05-20T20:16:24Z",
157
+ "created_at": "2020-12-10T21:24:32Z",
158
+ "updated_at": "2026-05-21T16:43:37Z"
159
+ },
160
+ {
161
+ "id": 1185768353,
162
+ "node_id": "R_kgDORq1joQ",
163
+ "name": "kody",
164
+ "full_name": "kentcdodds/kody",
165
+ "owner": {
166
+ "id": 1500684,
167
+ "login": "kentcdodds",
168
+ "avatar_url": "https://avatars.githubusercontent.com/u/1500684?v=4",
169
+ "url": "https://github.com/kentcdodds",
170
+ "type": "User"
171
+ },
172
+ "private": false,
173
+ "url": "https://github.com/kentcdodds/kody",
174
+ "description": "An experimental personal assistant platform built on Cloudflare Workers and MCP",
175
+ "fork": false,
176
+ "homepage": "",
177
+ "language": "TypeScript",
178
+ "forks_count": 10,
179
+ "stars_count": 88,
180
+ "watchers_count": 88,
181
+ "size": 16663,
182
+ "default_branch": "main",
183
+ "open_issues_count": 2,
184
+ "topics": [],
185
+ "license": null,
186
+ "archived": false,
187
+ "disabled": false,
188
+ "visibility": "public",
189
+ "pushed_at": "2026-05-21T12:37:15Z",
190
+ "created_at": "2026-03-18T23:30:18Z",
191
+ "updated_at": "2026-05-21T12:36:07Z"
192
+ },
193
+ ],
194
+ "cursor": 2
195
+ },
196
+ },
197
+ {
198
+ name: "Activity",
199
+ method: "GET",
200
+ description:
201
+ "Get public GitHub profile contribution activity for a user. Defaults to the current year and returns one month at a time.",
202
+ fullDescription:
203
+ "Retrieves GitHub profile contribution activity for a user from the public profile activity timeline. Defaults to the current year when year is not provided. Results come back one month at a time in the activity array. Pass cursor from the previous response to page backward through the year.",
204
+ path: "/v1/github/user/activity",
205
+ params: [
206
+ {
207
+ name: "handle",
208
+ type: "string",
209
+ required: false,
210
+ description: "GitHub handle",
211
+ placeholder: "kentcdodds",
212
+ },
213
+ {
214
+ name: "url",
215
+ type: "string",
216
+ required: false,
217
+ description: "GitHub user URL, e.g. https://github.com/kentcdodds.",
218
+ placeholder: "https://github.com/torvalds",
219
+ },
220
+ {
221
+ name: "year",
222
+ type: "number",
223
+ required: false,
224
+ description: "When provided, returns profile contribution activity for that year. Defaults to the current year.",
225
+ placeholder: "2026",
226
+ },
227
+ {
228
+ name: "cursor",
229
+ type: "number",
230
+ required: false,
231
+ description: "Cursor from the previous response. Pages backward by month through the selected year.",
232
+ placeholder: 1,
233
+ },
234
+ ],
235
+ sampleResponse: {
236
+ "success": true,
237
+ "credits_remaining": 49997684632,
238
+ "username": "kentcdodds",
239
+ "year": 2026,
240
+ "month": "May 2026",
241
+ "activity": [
242
+ {
243
+ "summary": "Created 186 commits in 13 repositories",
244
+ "details": [
245
+ {
246
+ "text": "kentcdodds/kody 144 commits",
247
+ "repository": {
248
+ "text": "kentcdodds/kody",
249
+ "url": "https://github.com/kentcdodds/kody"
250
+ },
251
+ "links": [
252
+ {
253
+ "text": "kentcdodds/kody",
254
+ "url": "https://github.com/kentcdodds/kody"
255
+ },
256
+ {
257
+ "text": "144 commits",
258
+ "url": "https://github.com/kentcdodds/kody/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
259
+ }
260
+ ],
261
+ "language": null,
262
+ "date_text": null,
263
+ "date_description": null
264
+ },
265
+ {
266
+ "text": "kody-bot/connector-kit 9 commits",
267
+ "repository": {
268
+ "text": "kody-bot/connector-kit",
269
+ "url": "https://github.com/kody-bot/connector-kit"
270
+ },
271
+ "links": [
272
+ {
273
+ "text": "kody-bot/connector-kit",
274
+ "url": "https://github.com/kody-bot/connector-kit"
275
+ },
276
+ {
277
+ "text": "9 commits",
278
+ "url": "https://github.com/kody-bot/connector-kit/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
279
+ }
280
+ ],
281
+ "language": null,
282
+ "date_text": null,
283
+ "date_description": null
284
+ },
285
+ {
286
+ "text": "kentcdodds/kentcdodds.com 8 commits",
287
+ "repository": {
288
+ "text": "kentcdodds/kentcdodds.com",
289
+ "url": "https://github.com/kentcdodds/kentcdodds.com"
290
+ },
291
+ "links": [
292
+ {
293
+ "text": "kentcdodds/kentcdodds.com",
294
+ "url": "https://github.com/kentcdodds/kentcdodds.com"
295
+ },
296
+ {
297
+ "text": "8 commits",
298
+ "url": "https://github.com/kentcdodds/kentcdodds.com/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
299
+ }
300
+ ],
301
+ "language": null,
302
+ "date_text": null,
303
+ "date_description": null
304
+ },
305
+ {
306
+ "text": "kentcdodds/stream-systems-visual 8 commits",
307
+ "repository": {
308
+ "text": "kentcdodds/stream-systems-visual",
309
+ "url": "https://github.com/kentcdodds/stream-systems-visual"
310
+ },
311
+ "links": [
312
+ {
313
+ "text": "kentcdodds/stream-systems-visual",
314
+ "url": "https://github.com/kentcdodds/stream-systems-visual"
315
+ },
316
+ {
317
+ "text": "8 commits",
318
+ "url": "https://github.com/kentcdodds/stream-systems-visual/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
319
+ }
320
+ ],
321
+ "language": null,
322
+ "date_text": null,
323
+ "date_description": null
324
+ },
325
+ {
326
+ "text": "kentcdodds/kody-home-connector 6 commits",
327
+ "repository": {
328
+ "text": "kentcdodds/kody-home-connector",
329
+ "url": "https://github.com/kentcdodds/kody-home-connector"
330
+ },
331
+ "links": [
332
+ {
333
+ "text": "kentcdodds/kody-home-connector",
334
+ "url": "https://github.com/kentcdodds/kody-home-connector"
335
+ },
336
+ {
337
+ "text": "6 commits",
338
+ "url": "https://github.com/kentcdodds/kody-home-connector/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
339
+ }
340
+ ],
341
+ "language": null,
342
+ "date_text": null,
343
+ "date_description": null
344
+ },
345
+ {
346
+ "text": "kentcdodds/kids-ledger 3 commits",
347
+ "repository": {
348
+ "text": "kentcdodds/kids-ledger",
349
+ "url": "https://github.com/kentcdodds/kids-ledger"
350
+ },
351
+ "links": [
352
+ {
353
+ "text": "kentcdodds/kids-ledger",
354
+ "url": "https://github.com/kentcdodds/kids-ledger"
355
+ },
356
+ {
357
+ "text": "3 commits",
358
+ "url": "https://github.com/kentcdodds/kids-ledger/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
359
+ }
360
+ ],
361
+ "language": null,
362
+ "date_text": null,
363
+ "date_description": null
364
+ },
365
+ {
366
+ "text": "epicweb-dev/epicshop 2 commits",
367
+ "repository": {
368
+ "text": "epicweb-dev/epicshop",
369
+ "url": "https://github.com/epicweb-dev/epicshop"
370
+ },
371
+ "links": [
372
+ {
373
+ "text": "epicweb-dev/epicshop",
374
+ "url": "https://github.com/epicweb-dev/epicshop"
375
+ },
376
+ {
377
+ "text": "2 commits",
378
+ "url": "https://github.com/epicweb-dev/epicshop/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
379
+ }
380
+ ],
381
+ "language": null,
382
+ "date_text": null,
383
+ "date_description": null
384
+ },
385
+ {
386
+ "text": "epicweb-dev/eprec 1 commit",
387
+ "repository": {
388
+ "text": "epicweb-dev/eprec",
389
+ "url": "https://github.com/epicweb-dev/eprec"
390
+ },
391
+ "links": [
392
+ {
393
+ "text": "epicweb-dev/eprec",
394
+ "url": "https://github.com/epicweb-dev/eprec"
395
+ },
396
+ {
397
+ "text": "1 commit",
398
+ "url": "https://github.com/epicweb-dev/eprec/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
399
+ }
400
+ ],
401
+ "language": null,
402
+ "date_text": null,
403
+ "date_description": null
404
+ },
405
+ {
406
+ "text": "epicweb-dev/epicli 1 commit",
407
+ "repository": {
408
+ "text": "epicweb-dev/epicli",
409
+ "url": "https://github.com/epicweb-dev/epicli"
410
+ },
411
+ "links": [
412
+ {
413
+ "text": "epicweb-dev/epicli",
414
+ "url": "https://github.com/epicweb-dev/epicli"
415
+ },
416
+ {
417
+ "text": "1 commit",
418
+ "url": "https://github.com/epicweb-dev/epicli/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
419
+ }
420
+ ],
421
+ "language": null,
422
+ "date_text": null,
423
+ "date_description": null
424
+ },
425
+ {
426
+ "text": "epicweb-dev/remember 1 commit",
427
+ "repository": {
428
+ "text": "epicweb-dev/remember",
429
+ "url": "https://github.com/epicweb-dev/remember"
430
+ },
431
+ "links": [
432
+ {
433
+ "text": "epicweb-dev/remember",
434
+ "url": "https://github.com/epicweb-dev/remember"
435
+ },
436
+ {
437
+ "text": "1 commit",
438
+ "url": "https://github.com/epicweb-dev/remember/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
439
+ }
440
+ ],
441
+ "language": null,
442
+ "date_text": null,
443
+ "date_description": null
444
+ },
445
+ {
446
+ "text": "epicweb-dev/cachified 1 commit",
447
+ "repository": {
448
+ "text": "epicweb-dev/cachified",
449
+ "url": "https://github.com/epicweb-dev/cachified"
450
+ },
451
+ "links": [
452
+ {
453
+ "text": "epicweb-dev/cachified",
454
+ "url": "https://github.com/epicweb-dev/cachified"
455
+ },
456
+ {
457
+ "text": "1 commit",
458
+ "url": "https://github.com/epicweb-dev/cachified/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
459
+ }
460
+ ],
461
+ "language": null,
462
+ "date_text": null,
463
+ "date_description": null
464
+ },
465
+ {
466
+ "text": "epicweb-dev/react-e2e-testing-with-pl... 1 commit",
467
+ "repository": {
468
+ "text": "epicweb-dev/react-e2e-testing-with-pl...",
469
+ "url": "https://github.com/epicweb-dev/react-e2e-testing-with-playwright"
470
+ },
471
+ "links": [
472
+ {
473
+ "text": "epicweb-dev/react-e2e-testing-with-pl...",
474
+ "url": "https://github.com/epicweb-dev/react-e2e-testing-with-playwright"
475
+ },
476
+ {
477
+ "text": "1 commit",
478
+ "url": "https://github.com/epicweb-dev/react-e2e-testing-with-playwright/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
479
+ }
480
+ ],
481
+ "language": null,
482
+ "date_text": null,
483
+ "date_description": null
484
+ },
485
+ {
486
+ "text": "kentcdodds/mediarss 1 commit",
487
+ "repository": {
488
+ "text": "kentcdodds/mediarss",
489
+ "url": "https://github.com/kentcdodds/mediarss"
490
+ },
491
+ "links": [
492
+ {
493
+ "text": "kentcdodds/mediarss",
494
+ "url": "https://github.com/kentcdodds/mediarss"
495
+ },
496
+ {
497
+ "text": "1 commit",
498
+ "url": "https://github.com/kentcdodds/mediarss/commits?author=kentcdodds&since=2026-05-01&until=2026-05-22"
499
+ }
500
+ ],
501
+ "language": null,
502
+ "date_text": null,
503
+ "date_description": null
504
+ }
505
+ ]
506
+ },
507
+ {
508
+ "summary": "Created 2 repositories",
509
+ "details": [
510
+ {
511
+ "text": "kentcdodds/stream-systems-visual TypeScript • Built by This contribution was made on May 19 May 19",
512
+ "repository": {
513
+ "text": "kentcdodds/stream-systems-visual",
514
+ "url": "https://github.com/kentcdodds/stream-systems-visual"
515
+ },
516
+ "links": [
517
+ {
518
+ "text": "kentcdodds/stream-systems-visual",
519
+ "url": "https://github.com/kentcdodds/stream-systems-visual"
520
+ }
521
+ ],
522
+ "language": "TypeScript",
523
+ "date_text": "May 19",
524
+ "date_description": "This contribution was made on May 19"
525
+ },
526
+ {
527
+ "text": "kentcdodds/kody-home-connector TypeScript • Built by This contribution was made on May 7 May 7",
528
+ "repository": {
529
+ "text": "kentcdodds/kody-home-connector",
530
+ "url": "https://github.com/kentcdodds/kody-home-connector"
531
+ },
532
+ "links": [
533
+ {
534
+ "text": "kentcdodds/kody-home-connector",
535
+ "url": "https://github.com/kentcdodds/kody-home-connector"
536
+ }
537
+ ],
538
+ "language": "TypeScript",
539
+ "date_text": "May 7",
540
+ "date_description": "This contribution was made on May 7"
541
+ }
542
+ ]
543
+ },
544
+ {
545
+ "summary": "31 contributions in private repositories May 5 – May 19",
546
+ "details": []
547
+ }
548
+ ],
549
+ "no_activity": false,
550
+ "message": null,
551
+ "cursor": 2
552
+ },
553
+ },
554
+ {
555
+ name: "Followers",
556
+ method: "GET",
557
+ description:
558
+ "Get public followers for a GitHub user. Pass username, handle, or url.",
559
+ fullDescription:
560
+ "Retrieves public GitHub followers for a user. Each follower includes login, avatar, user URL, type, and GitHub IDs. Pass username, handle, or a full GitHub user url. Supports cursor pagination.",
561
+ path: "/v1/github/user/followers",
562
+ params: [
563
+ {
564
+ name: "handle",
565
+ type: "string",
566
+ required: false,
567
+ description: "GitHub username/handle of the user you want the followers for",
568
+ placeholder: "torvalds",
569
+ },
570
+ {
571
+ name: "url",
572
+ type: "string",
573
+ required: false,
574
+ description: "GitHub user URL, e.g. https://github.com/torvalds.",
575
+ placeholder: "https://github.com/torvalds",
576
+ },
577
+ {
578
+ name: "cursor",
579
+ type: "number",
580
+ required: false,
581
+ description: "Cursor from the previous response. Defaults to 1.",
582
+ placeholder: 1,
583
+ },
584
+ ],
585
+ sampleResponse: {
586
+ "success": true,
587
+ "credits_remaining": 49997684592,
588
+ "followers": [
589
+ {
590
+ "id": 206,
591
+ "node_id": "MDQ6VXNlcjIwNg==",
592
+ "login": "sprsquish",
593
+ "avatar_url": "https://avatars.githubusercontent.com/u/206?v=4",
594
+ "url": "https://github.com/sprsquish",
595
+ "type": "User",
596
+ "site_admin": false
597
+ },
598
+ {
599
+ "id": 365,
600
+ "node_id": "MDQ6VXNlcjM2NQ==",
601
+ "login": "pius",
602
+ "avatar_url": "https://avatars.githubusercontent.com/u/365?v=4",
603
+ "url": "https://github.com/pius",
604
+ "type": "User",
605
+ "site_admin": false
606
+ },
607
+ ],
608
+ "cursor": 2
609
+ },
610
+ },
611
+ {
612
+ name: "Following",
613
+ method: "GET",
614
+ description:
615
+ "Get public accounts a GitHub user follows.",
616
+ fullDescription:
617
+ "Retrieves public accounts followed by a GitHub user. Each account includes login, avatar, profile URL, type, and GitHub IDs. Pass username, handle, or a full GitHub profile url. Supports cursor pagination.",
618
+ path: "/v1/github/user/following",
619
+ params: [
620
+ {
621
+ name: "handle",
622
+ type: "string",
623
+ required: false,
624
+ description: "GitHub handle",
625
+ placeholder: "kentcdodds",
626
+ },
627
+ {
628
+ name: "url",
629
+ type: "string",
630
+ required: false,
631
+ description: "GitHub profile URL",
632
+ placeholder: "https://github.com/kentcdodds",
633
+ },
634
+ {
635
+ name: "cursor",
636
+ type: "number",
637
+ required: false,
638
+ description: "Cursor from the previous response. Defaults to 1.",
639
+ placeholder: 1,
640
+ },
641
+ ],
642
+ sampleResponse: {
643
+ "success": true,
644
+ "credits_remaining": 49997684530,
645
+ "following": [
646
+ {
647
+ "id": 4303,
648
+ "node_id": "MDQ6VXNlcjQzMDM=",
649
+ "login": "jdalton",
650
+ "avatar_url": "https://avatars.githubusercontent.com/u/4303?v=4",
651
+ "url": "https://github.com/jdalton",
652
+ "type": "User",
653
+ "site_admin": false
654
+ },
655
+ {
656
+ "id": 17031,
657
+ "node_id": "MDQ6VXNlcjE3MDMx",
658
+ "login": "jlongster",
659
+ "avatar_url": "https://avatars.githubusercontent.com/u/17031?v=4",
660
+ "url": "https://github.com/jlongster",
661
+ "type": "User",
662
+ "site_admin": false
663
+ },
664
+ ],
665
+ "cursor": 2
666
+ },
667
+ },
668
+ {
669
+ name: "Contributions",
670
+ method: "GET",
671
+ description:
672
+ "Get a user's GitHub contribution graph for a year.",
673
+ fullDescription:
674
+ "Retrieves the public GitHub contribution graph for a user and year, including total contributions and daily contribution counts/intensity. Pass github handle, or a full GitHub profile url. Defaults to the current year when year is not provided.",
675
+ path: "/v1/github/user/contributions",
676
+ params: [
677
+ {
678
+ name: "handle",
679
+ type: "string",
680
+ required: false,
681
+ description: "GitHub handle",
682
+ placeholder: "torvalds",
683
+ },
684
+ {
685
+ name: "url",
686
+ type: "string",
687
+ required: false,
688
+ description: "GitHub profile URL",
689
+ placeholder: "https://github.com/torvalds",
690
+ },
691
+ {
692
+ name: "year",
693
+ type: "number",
694
+ required: false,
695
+ description: "Contribution graph year. Defaults to the current year.",
696
+ placeholder: '2026',
697
+ },
698
+ ],
699
+ sampleResponse: {
700
+ "success": true,
701
+ "credits_remaining": 49997684481,
702
+ "contributions": {
703
+ "username": "torvalds",
704
+ "year": 2026,
705
+ "total_contributions": 1214,
706
+ "days": [
707
+ {
708
+ "date": "2026-01-01",
709
+ "contribution_count": 4,
710
+ "color": null,
711
+ "intensity": 1
712
+ },
713
+ {
714
+ "date": "2026-01-02",
715
+ "contribution_count": 16,
716
+ "color": null,
717
+ "intensity": 2
718
+ },
719
+ {
720
+ "date": "2026-01-03",
721
+ "contribution_count": 3,
722
+ "color": null,
723
+ "intensity": 1
724
+ },
725
+ {
726
+ "date": "2026-01-04",
727
+ "contribution_count": 7,
728
+ "color": null,
729
+ "intensity": 1
730
+ },
731
+ {
732
+ "date": "2026-01-05",
733
+ "contribution_count": 3,
734
+ "color": null,
735
+ "intensity": 1
736
+ },
737
+ {
738
+ "date": "2026-01-06",
739
+ "contribution_count": 2,
740
+ "color": null,
741
+ "intensity": 1
742
+ },
743
+ {
744
+ "date": "2026-01-07",
745
+ "contribution_count": 11,
746
+ "color": null,
747
+ "intensity": 2
748
+ }
749
+ ]
750
+ }
751
+ },
752
+ },
753
+ {
754
+ name: "Repository",
755
+ method: "GET",
756
+ description:
757
+ "Get public metadata for one GitHub repository.",
758
+ fullDescription:
759
+ "Retrieves public metadata for one GitHub repository, including owner, description, language, stars, forks, topics, license, visibility, default branch, open issues, and timestamps. Pass a full GitHub repository url.",
760
+ path: "/v1/github/repository",
761
+ params: [
762
+ {
763
+ name: "url",
764
+ type: "string",
765
+ required: true,
766
+ description: "GitHub repository URL",
767
+ placeholder: "https://github.com/torvalds/linux",
768
+ },
769
+ ],
770
+ sampleResponse: {
771
+ "success": true,
772
+ "credits_remaining": 49997684249,
773
+ "repository": {
774
+ "id": 2325298,
775
+ "node_id": "MDEwOlJlcG9zaXRvcnkyMzI1Mjk4",
776
+ "name": "linux",
777
+ "full_name": "torvalds/linux",
778
+ "owner": {
779
+ "id": 1024025,
780
+ "login": "torvalds",
781
+ "avatar_url": "https://avatars.githubusercontent.com/u/1024025?v=4",
782
+ "url": "https://github.com/torvalds",
783
+ "type": "User"
784
+ },
785
+ "private": false,
786
+ "url": "https://github.com/torvalds/linux",
787
+ "description": "Linux kernel source tree",
788
+ "fork": false,
789
+ "homepage": "",
790
+ "language": "C",
791
+ "forks_count": 62423,
792
+ "stars_count": 233979,
793
+ "watchers_count": 233979,
794
+ "size": 6298741,
795
+ "default_branch": "master",
796
+ "open_issues_count": 3,
797
+ "topics": [],
798
+ "license": {
799
+ "key": "other",
800
+ "name": "Other",
801
+ "spdx_id": "NOASSERTION"
802
+ },
803
+ "archived": false,
804
+ "disabled": false,
805
+ "visibility": "public",
806
+ "pushed_at": "2026-05-21T16:23:10Z",
807
+ "created_at": "2011-09-04T22:48:12Z",
808
+ "updated_at": "2026-05-21T19:31:40Z"
809
+ }
810
+ },
811
+ },
812
+ {
813
+ name: "Trending Repositories",
814
+ method: "GET",
815
+ description:
816
+ "Get GitHub trending repositories. Supports language, spoken_language_code, and daily/weekly/monthly range filters.",
817
+ fullDescription:
818
+ "Scrapes GitHub's public Trending repositories page. Returns ranked repositories with public URLs, descriptions, language, star/fork counts, stars for the selected range, and built-by users when GitHub shows them. Use language for paths like JavaScript or Python, since for daily/weekly/monthly, and spoken_language_code for GitHub's spoken language filter.",
819
+ path: "/v1/github/trending/repositories",
820
+ params: [
821
+ {
822
+ name: "language",
823
+ type: "string",
824
+ required: false,
825
+ description: "Optional coding language, e.g. javascript, python, or go.",
826
+ placeholder: "javascript",
827
+ },
828
+ {
829
+ name: "since",
830
+ type: "select",
831
+ required: false,
832
+ description: "Trending range: daily, weekly, or monthly. Defaults to daily.",
833
+ placeholder: "daily",
834
+ options: ["daily", "weekly", "monthly"],
835
+ },
836
+ {
837
+ name: "spoken_language_code",
838
+ type: "string",
839
+ required: false,
840
+ description: "Optional spoken language code filter, e.g. en.",
841
+ placeholder: "en",
842
+ },
843
+ ],
844
+ sampleResponse: {
845
+ "success": true,
846
+ "credits_remaining": 49997684128,
847
+ "since": "daily",
848
+ "language": null,
849
+ "spoken_language_code": null,
850
+ "repositories": [
851
+ {
852
+ "rank": 1,
853
+ "owner": "anthropics",
854
+ "repo": "claude-plugins-official",
855
+ "full_name": "anthropics/claude-plugins-official",
856
+ "url": "https://github.com/anthropics/claude-plugins-official",
857
+ "description": "Official, Anthropic-managed directory of high quality Claude Code Plugins.",
858
+ "language": "Python",
859
+ "language_color": "#3572A5",
860
+ "stars_count": 22064,
861
+ "forks_count": 2627,
862
+ "stars_today": 891,
863
+ "stars_today_text": "891 stars today",
864
+ "built_by": [
865
+ {
866
+ "username": "bryan-anthropic",
867
+ "avatar_url": "https://avatars.githubusercontent.com/u/238056179?s=40&v=4"
868
+ },
869
+ {
870
+ "username": "tobinsouth",
871
+ "avatar_url": "https://avatars.githubusercontent.com/u/32489862?s=40&v=4"
872
+ },
873
+ {
874
+ "username": "k6l3",
875
+ "avatar_url": "https://avatars.githubusercontent.com/u/111803974?s=40&v=4"
876
+ },
877
+ {
878
+ "username": "claude",
879
+ "avatar_url": "https://avatars.githubusercontent.com/u/81847?s=40&v=4"
880
+ },
881
+ {
882
+ "username": "noahzweben",
883
+ "avatar_url": "https://avatars.githubusercontent.com/u/12701358?s=40&v=4"
884
+ }
885
+ ]
886
+ },
887
+ {
888
+ "rank": 2,
889
+ "owner": "colbymchenry",
890
+ "repo": "codegraph",
891
+ "full_name": "colbymchenry/codegraph",
892
+ "url": "https://github.com/colbymchenry/codegraph",
893
+ "description": "Pre-indexed code knowledge graph for Claude Code, Codex, Cursor, and OpenCode — fewer tokens, fewer tool calls, 100% local",
894
+ "language": "TypeScript",
895
+ "language_color": "#3178c6",
896
+ "stars_count": 12987,
897
+ "forks_count": 744,
898
+ "stars_today": 4222,
899
+ "stars_today_text": "4,222 stars today",
900
+ "built_by": [
901
+ {
902
+ "username": "colbymchenry",
903
+ "avatar_url": "https://avatars.githubusercontent.com/u/18431132?s=40&v=4"
904
+ },
905
+ {
906
+ "username": "claude",
907
+ "avatar_url": "https://avatars.githubusercontent.com/u/81847?s=40&v=4"
908
+ },
909
+ {
910
+ "username": "omonien",
911
+ "avatar_url": "https://avatars.githubusercontent.com/u/1296517?s=40&v=4"
912
+ },
913
+ {
914
+ "username": "andreinknv",
915
+ "avatar_url": "https://avatars.githubusercontent.com/u/261684394?s=40&v=4"
916
+ },
917
+ {
918
+ "username": "MO2k4",
919
+ "avatar_url": "https://avatars.githubusercontent.com/u/453360?s=40&v=4"
920
+ }
921
+ ]
922
+ },
923
+ ]
924
+ },
925
+ },
926
+ {
927
+ name: "Trending Developers",
928
+ method: "GET",
929
+ description:
930
+ "Get GitHub trending developers. Supports language and daily/weekly/monthly range filters.",
931
+ fullDescription:
932
+ "Scrapes GitHub's public Trending developers page. Returns ranked developers with username, name, public profile URL, avatar, and the popular repository GitHub shows for that developer when available. Use language for paths like javascript or python and since for daily/weekly/monthly.",
933
+ path: "/v1/github/trending/developers",
934
+ params: [
935
+ {
936
+ name: "language",
937
+ type: "string",
938
+ required: false,
939
+ description: "Optional trending coding language, e.g. javascript, python, or go.",
940
+ placeholder: "javascript",
941
+ },
942
+ {
943
+ name: "since",
944
+ type: "select",
945
+ required: false,
946
+ description: "Trending range: daily, weekly, or monthly. Defaults to daily.",
947
+ placeholder: "daily",
948
+ options: ["daily", "weekly", "monthly"],
949
+ },
950
+ ],
951
+ sampleResponse: {
952
+ "success": true,
953
+ "credits_remaining": 49997683964,
954
+ "since": "daily",
955
+ "language": null,
956
+ "developers": [
957
+ {
958
+ "rank": 1,
959
+ "username": "koala73",
960
+ "name": "Elie Habib",
961
+ "url": "https://github.com/koala73",
962
+ "avatar_url": "https://avatars.githubusercontent.com/u/996596?s=96&v=4",
963
+ "popular_repository": {
964
+ "owner": "koala73",
965
+ "repo": "worldmonitor",
966
+ "full_name": "koala73/worldmonitor",
967
+ "url": "https://github.com/koala73/worldmonitor",
968
+ "name": "worldmonitor",
969
+ "description": "Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified s…"
970
+ }
971
+ },
972
+ {
973
+ "rank": 2,
974
+ "username": "sonichi",
975
+ "name": "Chi Wang",
976
+ "url": "https://github.com/sonichi",
977
+ "avatar_url": "https://avatars.githubusercontent.com/u/4250911?s=96&v=4",
978
+ "popular_repository": {
979
+ "owner": "sonichi",
980
+ "repo": "sutando",
981
+ "full_name": "sonichi/sutando",
982
+ "url": "https://github.com/sonichi/sutando",
983
+ "name": "sutando",
984
+ "description": "My AI Stand. Realtime by day, rewriting itself by night. Summon my AI superpower."
985
+ }
986
+ },
987
+ ]
988
+ },
989
+ },
990
+ ],
991
+ };