@nordsym/apiclaw 1.2.2 → 1.2.3

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.
Files changed (77) hide show
  1. package/AGENTS.md +50 -33
  2. package/README.md +22 -12
  3. package/SOUL.md +60 -19
  4. package/STATUS.md +91 -169
  5. package/convex/_generated/api.d.ts +6 -0
  6. package/convex/directCall.ts +598 -0
  7. package/convex/providers.ts +341 -26
  8. package/convex/schema.ts +87 -0
  9. package/convex/usage.ts +260 -0
  10. package/convex/waitlist.ts +55 -0
  11. package/data/combined-02-26.json +22102 -0
  12. package/data/night-expansion-02-26-06-batch2.json +1898 -0
  13. package/data/night-expansion-02-26-06-batch3.json +1410 -0
  14. package/data/night-expansion-02-26-06.json +3146 -0
  15. package/data/night-expansion-02-26-full.json +9726 -0
  16. package/data/night-expansion-02-26-v2.json +330 -0
  17. package/data/night-expansion-02-26.json +171 -0
  18. package/dist/crypto.d.ts +7 -0
  19. package/dist/crypto.d.ts.map +1 -0
  20. package/dist/crypto.js +67 -0
  21. package/dist/crypto.js.map +1 -0
  22. package/dist/execute-dynamic.d.ts +116 -0
  23. package/dist/execute-dynamic.d.ts.map +1 -0
  24. package/dist/execute-dynamic.js +456 -0
  25. package/dist/execute-dynamic.js.map +1 -0
  26. package/dist/execute.d.ts +2 -1
  27. package/dist/execute.d.ts.map +1 -1
  28. package/dist/execute.js +35 -5
  29. package/dist/execute.js.map +1 -1
  30. package/dist/index.js +33 -4
  31. package/dist/index.js.map +1 -1
  32. package/dist/registry/apis.json +2081 -3
  33. package/docs/PRD-customer-key-passthrough.md +184 -0
  34. package/landing/public/badges/available-on-apiclaw.svg +14 -0
  35. package/landing/scripts/generate-stats.js +75 -4
  36. package/landing/src/app/admin/page.tsx +1 -1
  37. package/landing/src/app/api/auth/magic-link/route.ts +1 -1
  38. package/landing/src/app/api/auth/session/route.ts +1 -1
  39. package/landing/src/app/api/auth/verify/route.ts +1 -1
  40. package/landing/src/app/api/og/route.tsx +5 -3
  41. package/landing/src/app/docs/page.tsx +5 -4
  42. package/landing/src/app/earn/page.tsx +14 -11
  43. package/landing/src/app/globals.css +16 -15
  44. package/landing/src/app/layout.tsx +2 -2
  45. package/landing/src/app/page.tsx +425 -254
  46. package/landing/src/app/providers/dashboard/[apiId]/actions/[actionId]/edit/page.tsx +600 -0
  47. package/landing/src/app/providers/dashboard/[apiId]/actions/new/page.tsx +583 -0
  48. package/landing/src/app/providers/dashboard/[apiId]/actions/page.tsx +301 -0
  49. package/landing/src/app/providers/dashboard/[apiId]/direct-call/page.tsx +659 -0
  50. package/landing/src/app/providers/dashboard/[apiId]/page.tsx +381 -0
  51. package/landing/src/app/providers/dashboard/[apiId]/test/page.tsx +418 -0
  52. package/landing/src/app/providers/dashboard/layout.tsx +292 -0
  53. package/landing/src/app/providers/dashboard/page.tsx +353 -290
  54. package/landing/src/app/providers/register/page.tsx +87 -10
  55. package/landing/src/components/AiClientDropdown.tsx +85 -0
  56. package/landing/src/components/ConfigHelperModal.tsx +113 -0
  57. package/landing/src/components/HeroTabs.tsx +187 -0
  58. package/landing/src/components/ShareIntegrationModal.tsx +198 -0
  59. package/landing/src/hooks/useDashboardData.ts +53 -1
  60. package/landing/src/lib/apis.json +46554 -174
  61. package/landing/src/lib/convex-client.ts +22 -3
  62. package/landing/src/lib/stats.json +4 -4
  63. package/landing/tsconfig.tsbuildinfo +1 -1
  64. package/night-expansion-02-26-06-batch2.py +368 -0
  65. package/night-expansion-02-26-06-batch3.py +299 -0
  66. package/night-expansion-02-26-06.py +756 -0
  67. package/package.json +1 -1
  68. package/scripts/bulk-add-public-apis-v2.py +418 -0
  69. package/scripts/night-expansion-02-26-v2.py +296 -0
  70. package/scripts/night-expansion-02-26.py +890 -0
  71. package/scripts/seed-complete-api.js +181 -0
  72. package/scripts/seed-demo-api.sh +44 -0
  73. package/src/crypto.ts +75 -0
  74. package/src/execute-dynamic.ts +589 -0
  75. package/src/execute.ts +41 -5
  76. package/src/index.ts +38 -4
  77. package/src/registry/apis.json +2081 -3
@@ -0,0 +1,1410 @@
1
+ [
2
+ {
3
+ "id": "together-ai",
4
+ "name": "Together AI",
5
+ "description": "Open source AI models",
6
+ "category": "AI",
7
+ "link": "https://docs.together.ai/",
8
+ "auth": "apiKey"
9
+ },
10
+ {
11
+ "id": "groq",
12
+ "name": "Groq",
13
+ "description": "Fast AI inference",
14
+ "category": "AI",
15
+ "link": "https://console.groq.com/docs/",
16
+ "auth": "apiKey"
17
+ },
18
+ {
19
+ "id": "fireworks-ai",
20
+ "name": "Fireworks AI",
21
+ "description": "AI model hosting",
22
+ "category": "AI",
23
+ "link": "https://readme.fireworks.ai/",
24
+ "auth": "apiKey"
25
+ },
26
+ {
27
+ "id": "perplexity",
28
+ "name": "Perplexity",
29
+ "description": "AI search",
30
+ "category": "AI",
31
+ "link": "https://docs.perplexity.ai/",
32
+ "auth": "apiKey"
33
+ },
34
+ {
35
+ "id": "mistral-ai",
36
+ "name": "Mistral AI",
37
+ "description": "AI models",
38
+ "category": "AI",
39
+ "link": "https://docs.mistral.ai/",
40
+ "auth": "apiKey"
41
+ },
42
+ {
43
+ "id": "ai21-labs",
44
+ "name": "AI21 Labs",
45
+ "description": "AI language models",
46
+ "category": "AI",
47
+ "link": "https://docs.ai21.com/",
48
+ "auth": "apiKey"
49
+ },
50
+ {
51
+ "id": "writer",
52
+ "name": "Writer",
53
+ "description": "Enterprise AI",
54
+ "category": "AI",
55
+ "link": "https://dev.writer.com/",
56
+ "auth": "apiKey"
57
+ },
58
+ {
59
+ "id": "jasper-ai",
60
+ "name": "Jasper AI",
61
+ "description": "Content AI",
62
+ "category": "AI",
63
+ "link": "https://developers.jasper.ai/",
64
+ "auth": "apiKey"
65
+ },
66
+ {
67
+ "id": "tome",
68
+ "name": "Tome",
69
+ "description": "AI presentations",
70
+ "category": "AI",
71
+ "link": "https://tome.app/api",
72
+ "auth": "apiKey"
73
+ },
74
+ {
75
+ "id": "mem-ai",
76
+ "name": "Mem AI",
77
+ "description": "AI knowledge base",
78
+ "category": "AI",
79
+ "link": "https://mem.ai/api",
80
+ "auth": "apiKey"
81
+ },
82
+ {
83
+ "id": "runway-ml",
84
+ "name": "Runway ML",
85
+ "description": "Creative AI",
86
+ "category": "AI",
87
+ "link": "https://docs.runwayml.com/",
88
+ "auth": "apiKey"
89
+ },
90
+ {
91
+ "id": "leonardo-ai",
92
+ "name": "Leonardo AI",
93
+ "description": "AI image generation",
94
+ "category": "AI",
95
+ "link": "https://docs.leonardo.ai/",
96
+ "auth": "apiKey"
97
+ },
98
+ {
99
+ "id": "ideogram",
100
+ "name": "Ideogram",
101
+ "description": "AI image generation",
102
+ "category": "AI",
103
+ "link": "https://ideogram.ai/api",
104
+ "auth": "apiKey"
105
+ },
106
+ {
107
+ "id": "midjourney",
108
+ "name": "Midjourney",
109
+ "description": "AI art generation",
110
+ "category": "AI",
111
+ "link": "https://docs.midjourney.com/",
112
+ "auth": "apiKey"
113
+ },
114
+ {
115
+ "id": "dall-e",
116
+ "name": "DALL-E",
117
+ "description": "OpenAI image generation",
118
+ "category": "AI",
119
+ "link": "https://platform.openai.com/docs/guides/images",
120
+ "auth": "apiKey"
121
+ },
122
+ {
123
+ "id": "imgix",
124
+ "name": "Imgix",
125
+ "description": "Image CDN",
126
+ "category": "Media",
127
+ "link": "https://docs.imgix.com/apis/",
128
+ "auth": "apiKey"
129
+ },
130
+ {
131
+ "id": "thumbor",
132
+ "name": "Thumbor",
133
+ "description": "Image processing",
134
+ "category": "Media",
135
+ "link": "https://thumbor.readthedocs.io/",
136
+ "auth": "None"
137
+ },
138
+ {
139
+ "id": "tinypng",
140
+ "name": "TinyPNG",
141
+ "description": "Image compression",
142
+ "category": "Media",
143
+ "link": "https://tinypng.com/developers",
144
+ "auth": "apiKey"
145
+ },
146
+ {
147
+ "id": "kraken-io",
148
+ "name": "Kraken.io",
149
+ "description": "Image optimization",
150
+ "category": "Media",
151
+ "link": "https://kraken.io/docs/",
152
+ "auth": "apiKey"
153
+ },
154
+ {
155
+ "id": "sharp",
156
+ "name": "Sharp",
157
+ "description": "Image processing",
158
+ "category": "Media",
159
+ "link": "https://sharp.pixelplumbing.com/api",
160
+ "auth": "None"
161
+ },
162
+ {
163
+ "id": "uploadcare",
164
+ "name": "Uploadcare",
165
+ "description": "File uploading",
166
+ "category": "Media",
167
+ "link": "https://uploadcare.com/api-refs/",
168
+ "auth": "apiKey"
169
+ },
170
+ {
171
+ "id": "imagekit",
172
+ "name": "ImageKit",
173
+ "description": "Image CDN",
174
+ "category": "Media",
175
+ "link": "https://docs.imagekit.io/",
176
+ "auth": "apiKey"
177
+ },
178
+ {
179
+ "id": "browserstack",
180
+ "name": "BrowserStack",
181
+ "description": "Browser testing",
182
+ "category": "Testing",
183
+ "link": "https://www.browserstack.com/docs/automate/api-reference/",
184
+ "auth": "apiKey"
185
+ },
186
+ {
187
+ "id": "sauce-labs",
188
+ "name": "Sauce Labs",
189
+ "description": "Testing platform",
190
+ "category": "Testing",
191
+ "link": "https://docs.saucelabs.com/dev/api/",
192
+ "auth": "apiKey"
193
+ },
194
+ {
195
+ "id": "lambdatest",
196
+ "name": "LambdaTest",
197
+ "description": "Browser testing",
198
+ "category": "Testing",
199
+ "link": "https://www.lambdatest.com/support/api-doc/",
200
+ "auth": "apiKey"
201
+ },
202
+ {
203
+ "id": "testim",
204
+ "name": "Testim",
205
+ "description": "AI testing",
206
+ "category": "Testing",
207
+ "link": "https://help.testim.io/docs/api",
208
+ "auth": "apiKey"
209
+ },
210
+ {
211
+ "id": "mabl",
212
+ "name": "Mabl",
213
+ "description": "Test automation",
214
+ "category": "Testing",
215
+ "link": "https://help.mabl.com/docs/api-overview",
216
+ "auth": "apiKey"
217
+ },
218
+ {
219
+ "id": "cypress-dashboard",
220
+ "name": "Cypress Dashboard",
221
+ "description": "Test recording",
222
+ "category": "Testing",
223
+ "link": "https://docs.cypress.io/guides/cloud/api",
224
+ "auth": "apiKey"
225
+ },
226
+ {
227
+ "id": "applitools",
228
+ "name": "Applitools",
229
+ "description": "Visual testing",
230
+ "category": "Testing",
231
+ "link": "https://applitools.com/docs/api/eyes-sdk/",
232
+ "auth": "apiKey"
233
+ },
234
+ {
235
+ "id": "percy",
236
+ "name": "Percy",
237
+ "description": "Visual testing",
238
+ "category": "Testing",
239
+ "link": "https://docs.percy.io/docs/api",
240
+ "auth": "apiKey"
241
+ },
242
+ {
243
+ "id": "checkly",
244
+ "name": "Checkly",
245
+ "description": "Monitoring",
246
+ "category": "Testing",
247
+ "link": "https://www.checklyhq.com/docs/api/",
248
+ "auth": "apiKey"
249
+ },
250
+ {
251
+ "id": "k6",
252
+ "name": "k6",
253
+ "description": "Load testing",
254
+ "category": "Testing",
255
+ "link": "https://k6.io/docs/cloud/cloud-reference/cloud-rest-api/",
256
+ "auth": "apiKey"
257
+ },
258
+ {
259
+ "id": "snyk",
260
+ "name": "Snyk",
261
+ "description": "Security scanning",
262
+ "category": "Security",
263
+ "link": "https://snyk.docs.apiary.io/",
264
+ "auth": "apiKey"
265
+ },
266
+ {
267
+ "id": "sonarqube",
268
+ "name": "SonarQube",
269
+ "description": "Code quality",
270
+ "category": "Security",
271
+ "link": "https://docs.sonarqube.org/latest/extend/web-api/",
272
+ "auth": "apiKey"
273
+ },
274
+ {
275
+ "id": "detectify",
276
+ "name": "Detectify",
277
+ "description": "Web security",
278
+ "category": "Security",
279
+ "link": "https://developer.detectify.com/",
280
+ "auth": "apiKey"
281
+ },
282
+ {
283
+ "id": "securitytrails",
284
+ "name": "SecurityTrails",
285
+ "description": "DNS data",
286
+ "category": "Security",
287
+ "link": "https://securitytrails.com/corp/api",
288
+ "auth": "apiKey"
289
+ },
290
+ {
291
+ "id": "urlscan",
292
+ "name": "URLScan",
293
+ "description": "URL analysis",
294
+ "category": "Security",
295
+ "link": "https://urlscan.io/docs/api/",
296
+ "auth": "apiKey"
297
+ },
298
+ {
299
+ "id": "shodan",
300
+ "name": "Shodan",
301
+ "description": "Internet scanner",
302
+ "category": "Security",
303
+ "link": "https://developer.shodan.io/",
304
+ "auth": "apiKey"
305
+ },
306
+ {
307
+ "id": "censys",
308
+ "name": "Censys",
309
+ "description": "Internet data",
310
+ "category": "Security",
311
+ "link": "https://censys.io/api",
312
+ "auth": "apiKey"
313
+ },
314
+ {
315
+ "id": "greynoise",
316
+ "name": "GreyNoise",
317
+ "description": "Threat intelligence",
318
+ "category": "Security",
319
+ "link": "https://docs.greynoise.io/",
320
+ "auth": "apiKey"
321
+ },
322
+ {
323
+ "id": "libretranslate",
324
+ "name": "LibreTranslate",
325
+ "description": "Open source translation",
326
+ "category": "Language",
327
+ "link": "https://libretranslate.com/docs/",
328
+ "auth": "apiKey"
329
+ },
330
+ {
331
+ "id": "lingva",
332
+ "name": "Lingva",
333
+ "description": "Translation proxy",
334
+ "category": "Language",
335
+ "link": "https://github.com/thedaviddelta/lingva-translate",
336
+ "auth": "None"
337
+ },
338
+ {
339
+ "id": "mymemory",
340
+ "name": "MyMemory",
341
+ "description": "Translation memory",
342
+ "category": "Language",
343
+ "link": "https://mymemory.translated.net/doc/spec.php",
344
+ "auth": "None"
345
+ },
346
+ {
347
+ "id": "lilt",
348
+ "name": "Lilt",
349
+ "description": "AI translation",
350
+ "category": "Language",
351
+ "link": "https://lilt.com/docs/api",
352
+ "auth": "apiKey"
353
+ },
354
+ {
355
+ "id": "smartling",
356
+ "name": "Smartling",
357
+ "description": "Translation platform",
358
+ "category": "Language",
359
+ "link": "https://help.smartling.com/hc/en-us/sections/360005019093-API",
360
+ "auth": "apiKey"
361
+ },
362
+ {
363
+ "id": "crowdin",
364
+ "name": "Crowdin",
365
+ "description": "Localization platform",
366
+ "category": "Language",
367
+ "link": "https://developer.crowdin.com/",
368
+ "auth": "apiKey"
369
+ },
370
+ {
371
+ "id": "lokalise",
372
+ "name": "Lokalise",
373
+ "description": "Localization platform",
374
+ "category": "Language",
375
+ "link": "https://developers.lokalise.com/",
376
+ "auth": "apiKey"
377
+ },
378
+ {
379
+ "id": "phrase",
380
+ "name": "Phrase",
381
+ "description": "Localization",
382
+ "category": "Language",
383
+ "link": "https://developers.phrase.com/",
384
+ "auth": "apiKey"
385
+ },
386
+ {
387
+ "id": "transifex",
388
+ "name": "Transifex",
389
+ "description": "Localization platform",
390
+ "category": "Language",
391
+ "link": "https://developers.transifex.com/",
392
+ "auth": "apiKey"
393
+ },
394
+ {
395
+ "id": "poeditor",
396
+ "name": "POEditor",
397
+ "description": "Localization platform",
398
+ "category": "Language",
399
+ "link": "https://poeditor.com/docs/api",
400
+ "auth": "apiKey"
401
+ },
402
+ {
403
+ "id": "ahrefs",
404
+ "name": "Ahrefs",
405
+ "description": "SEO tools",
406
+ "category": "Marketing",
407
+ "link": "https://ahrefs.com/api/documentation",
408
+ "auth": "apiKey"
409
+ },
410
+ {
411
+ "id": "moz",
412
+ "name": "Moz",
413
+ "description": "SEO software",
414
+ "category": "Marketing",
415
+ "link": "https://moz.com/products/api",
416
+ "auth": "apiKey"
417
+ },
418
+ {
419
+ "id": "semrush",
420
+ "name": "Semrush",
421
+ "description": "Marketing platform",
422
+ "category": "Marketing",
423
+ "link": "https://www.semrush.com/api-documentation/",
424
+ "auth": "apiKey"
425
+ },
426
+ {
427
+ "id": "majestic",
428
+ "name": "Majestic",
429
+ "description": "Backlink analysis",
430
+ "category": "Marketing",
431
+ "link": "https://developer-support.majestic.com/",
432
+ "auth": "apiKey"
433
+ },
434
+ {
435
+ "id": "screaming-frog",
436
+ "name": "Screaming Frog",
437
+ "description": "SEO spider",
438
+ "category": "Marketing",
439
+ "link": "https://www.screamingfrog.co.uk/seo-spider/api/",
440
+ "auth": "apiKey"
441
+ },
442
+ {
443
+ "id": "spyfu",
444
+ "name": "SpyFu",
445
+ "description": "Competitor research",
446
+ "category": "Marketing",
447
+ "link": "https://www.spyfu.com/api",
448
+ "auth": "apiKey"
449
+ },
450
+ {
451
+ "id": "similarweb",
452
+ "name": "SimilarWeb",
453
+ "description": "Web analytics",
454
+ "category": "Analytics",
455
+ "link": "https://developer.similarweb.com/",
456
+ "auth": "apiKey"
457
+ },
458
+ {
459
+ "id": "builtwith",
460
+ "name": "BuiltWith",
461
+ "description": "Technology lookup",
462
+ "category": "Marketing",
463
+ "link": "https://api.builtwith.com/",
464
+ "auth": "apiKey"
465
+ },
466
+ {
467
+ "id": "wappalyzer",
468
+ "name": "Wappalyzer",
469
+ "description": "Technology profiler",
470
+ "category": "Tools",
471
+ "link": "https://www.wappalyzer.com/docs/api/",
472
+ "auth": "apiKey"
473
+ },
474
+ {
475
+ "id": "pagespeed-insights",
476
+ "name": "PageSpeed Insights",
477
+ "description": "Performance testing",
478
+ "category": "Tools",
479
+ "link": "https://developers.google.com/speed/docs/insights/v5/get-started",
480
+ "auth": "apiKey"
481
+ },
482
+ {
483
+ "id": "eventbrite",
484
+ "name": "Eventbrite",
485
+ "description": "Event management",
486
+ "category": "Events",
487
+ "link": "https://www.eventbrite.com/platform/docs/",
488
+ "auth": "OAuth"
489
+ },
490
+ {
491
+ "id": "meetup",
492
+ "name": "Meetup",
493
+ "description": "Events platform",
494
+ "category": "Events",
495
+ "link": "https://www.meetup.com/api/",
496
+ "auth": "OAuth"
497
+ },
498
+ {
499
+ "id": "luma",
500
+ "name": "Luma",
501
+ "description": "Event hosting",
502
+ "category": "Events",
503
+ "link": "https://docs.lu.ma/",
504
+ "auth": "apiKey"
505
+ },
506
+ {
507
+ "id": "splash",
508
+ "name": "Splash",
509
+ "description": "Event marketing",
510
+ "category": "Events",
511
+ "link": "https://api.splashthat.com/",
512
+ "auth": "apiKey"
513
+ },
514
+ {
515
+ "id": "bizzabo",
516
+ "name": "Bizzabo",
517
+ "description": "Event software",
518
+ "category": "Events",
519
+ "link": "https://developers.bizzabo.com/",
520
+ "auth": "apiKey"
521
+ },
522
+ {
523
+ "id": "hopin",
524
+ "name": "Hopin",
525
+ "description": "Virtual events",
526
+ "category": "Events",
527
+ "link": "https://hopin.com/developers",
528
+ "auth": "apiKey"
529
+ },
530
+ {
531
+ "id": "zoom-events",
532
+ "name": "Zoom Events",
533
+ "description": "Event platform",
534
+ "category": "Events",
535
+ "link": "https://marketplace.zoom.us/docs/api-reference/events/",
536
+ "auth": "OAuth"
537
+ },
538
+ {
539
+ "id": "on24",
540
+ "name": "On24",
541
+ "description": "Webinar platform",
542
+ "category": "Events",
543
+ "link": "https://developer.on24.com/",
544
+ "auth": "apiKey"
545
+ },
546
+ {
547
+ "id": "goldcast",
548
+ "name": "Goldcast",
549
+ "description": "B2B events",
550
+ "category": "Events",
551
+ "link": "https://www.goldcast.io/api",
552
+ "auth": "apiKey"
553
+ },
554
+ {
555
+ "id": "spotify-for-podcasters",
556
+ "name": "Spotify for Podcasters",
557
+ "description": "Podcast analytics",
558
+ "category": "Music",
559
+ "link": "https://developers.spotify.com/documentation/web-api/",
560
+ "auth": "OAuth"
561
+ },
562
+ {
563
+ "id": "podchaser",
564
+ "name": "Podchaser",
565
+ "description": "Podcast database",
566
+ "category": "Music",
567
+ "link": "https://api-docs.podchaser.com/",
568
+ "auth": "apiKey"
569
+ },
570
+ {
571
+ "id": "listen-notes",
572
+ "name": "Listen Notes",
573
+ "description": "Podcast search",
574
+ "category": "Music",
575
+ "link": "https://www.listennotes.com/api/docs/",
576
+ "auth": "apiKey"
577
+ },
578
+ {
579
+ "id": "transistor",
580
+ "name": "Transistor",
581
+ "description": "Podcast hosting",
582
+ "category": "Music",
583
+ "link": "https://developers.transistor.fm/",
584
+ "auth": "apiKey"
585
+ },
586
+ {
587
+ "id": "buzzsprout",
588
+ "name": "Buzzsprout",
589
+ "description": "Podcast hosting",
590
+ "category": "Music",
591
+ "link": "https://www.buzzsprout.com/api",
592
+ "auth": "apiKey"
593
+ },
594
+ {
595
+ "id": "anchor",
596
+ "name": "Anchor",
597
+ "description": "Podcast platform",
598
+ "category": "Music",
599
+ "link": "https://anchor.fm/api",
600
+ "auth": "OAuth"
601
+ },
602
+ {
603
+ "id": "podbean",
604
+ "name": "Podbean",
605
+ "description": "Podcast hosting",
606
+ "category": "Music",
607
+ "link": "https://developers.podbean.com/",
608
+ "auth": "OAuth"
609
+ },
610
+ {
611
+ "id": "spreaker",
612
+ "name": "Spreaker",
613
+ "description": "Podcast hosting",
614
+ "category": "Music",
615
+ "link": "https://developers.spreaker.com/",
616
+ "auth": "OAuth"
617
+ },
618
+ {
619
+ "id": "audioboom",
620
+ "name": "Audioboom",
621
+ "description": "Podcast network",
622
+ "category": "Music",
623
+ "link": "https://audioboom.com/api",
624
+ "auth": "apiKey"
625
+ },
626
+ {
627
+ "id": "libsyn",
628
+ "name": "Libsyn",
629
+ "description": "Podcast hosting",
630
+ "category": "Music",
631
+ "link": "https://api.libsyn.com/",
632
+ "auth": "apiKey"
633
+ },
634
+ {
635
+ "id": "clicksend",
636
+ "name": "Clicksend",
637
+ "description": "SMS gateway",
638
+ "category": "Communication",
639
+ "link": "https://developers.clicksend.com/",
640
+ "auth": "apiKey"
641
+ },
642
+ {
643
+ "id": "textmagic",
644
+ "name": "Textmagic",
645
+ "description": "SMS marketing",
646
+ "category": "Communication",
647
+ "link": "https://www.textmagic.com/docs/api/",
648
+ "auth": "apiKey"
649
+ },
650
+ {
651
+ "id": "messente",
652
+ "name": "Messente",
653
+ "description": "SMS API",
654
+ "category": "Communication",
655
+ "link": "https://messente.com/documentation/",
656
+ "auth": "apiKey"
657
+ },
658
+ {
659
+ "id": "infobip",
660
+ "name": "Infobip",
661
+ "description": "Communications platform",
662
+ "category": "Communication",
663
+ "link": "https://www.infobip.com/docs/api",
664
+ "auth": "apiKey"
665
+ },
666
+ {
667
+ "id": "kaleyra",
668
+ "name": "Kaleyra",
669
+ "description": "CPaaS platform",
670
+ "category": "Communication",
671
+ "link": "https://developers.kaleyra.com/",
672
+ "auth": "apiKey"
673
+ },
674
+ {
675
+ "id": "routee",
676
+ "name": "Routee",
677
+ "description": "Messaging platform",
678
+ "category": "Communication",
679
+ "link": "https://docs.routee.net/",
680
+ "auth": "apiKey"
681
+ },
682
+ {
683
+ "id": "smsapi",
684
+ "name": "Smsapi",
685
+ "description": "SMS gateway",
686
+ "category": "Communication",
687
+ "link": "https://www.smsapi.com/docs/",
688
+ "auth": "apiKey"
689
+ },
690
+ {
691
+ "id": "bulksms",
692
+ "name": "Bulksms",
693
+ "description": "SMS gateway",
694
+ "category": "Communication",
695
+ "link": "https://www.bulksms.com/developer/",
696
+ "auth": "apiKey"
697
+ },
698
+ {
699
+ "id": "textlocal",
700
+ "name": "Textlocal",
701
+ "description": "SMS service",
702
+ "category": "Communication",
703
+ "link": "https://api.txtlocal.com/docs/",
704
+ "auth": "apiKey"
705
+ },
706
+ {
707
+ "id": "tatango",
708
+ "name": "Tatango",
709
+ "description": "SMS marketing",
710
+ "category": "Communication",
711
+ "link": "https://www.tatango.com/api/",
712
+ "auth": "apiKey"
713
+ },
714
+ {
715
+ "id": "mapbox",
716
+ "name": "Mapbox",
717
+ "description": "Maps platform",
718
+ "category": "Maps",
719
+ "link": "https://docs.mapbox.com/api/",
720
+ "auth": "apiKey"
721
+ },
722
+ {
723
+ "id": "openstreetmap",
724
+ "name": "OpenStreetMap",
725
+ "description": "Open maps",
726
+ "category": "Maps",
727
+ "link": "https://wiki.openstreetmap.org/wiki/API",
728
+ "auth": "None"
729
+ },
730
+ {
731
+ "id": "radar",
732
+ "name": "Radar",
733
+ "description": "Location infrastructure",
734
+ "category": "Maps",
735
+ "link": "https://radar.com/documentation/api",
736
+ "auth": "apiKey"
737
+ },
738
+ {
739
+ "id": "precisely",
740
+ "name": "Precisely",
741
+ "description": "Location intelligence",
742
+ "category": "Maps",
743
+ "link": "https://developer.precisely.com/",
744
+ "auth": "apiKey"
745
+ },
746
+ {
747
+ "id": "smarty",
748
+ "name": "Smarty",
749
+ "description": "Address validation",
750
+ "category": "Tools",
751
+ "link": "https://www.smarty.com/docs/",
752
+ "auth": "apiKey"
753
+ },
754
+ {
755
+ "id": "alchemy",
756
+ "name": "Alchemy",
757
+ "description": "Blockchain infrastructure",
758
+ "category": "Blockchain",
759
+ "link": "https://docs.alchemy.com/",
760
+ "auth": "apiKey"
761
+ },
762
+ {
763
+ "id": "infura",
764
+ "name": "Infura",
765
+ "description": "Ethereum API",
766
+ "category": "Blockchain",
767
+ "link": "https://docs.infura.io/",
768
+ "auth": "apiKey"
769
+ },
770
+ {
771
+ "id": "quicknode",
772
+ "name": "QuickNode",
773
+ "description": "Blockchain nodes",
774
+ "category": "Blockchain",
775
+ "link": "https://www.quicknode.com/docs/",
776
+ "auth": "apiKey"
777
+ },
778
+ {
779
+ "id": "moralis",
780
+ "name": "Moralis",
781
+ "description": "Web3 API",
782
+ "category": "Blockchain",
783
+ "link": "https://docs.moralis.io/",
784
+ "auth": "apiKey"
785
+ },
786
+ {
787
+ "id": "ankr",
788
+ "name": "Ankr",
789
+ "description": "Web3 infrastructure",
790
+ "category": "Blockchain",
791
+ "link": "https://www.ankr.com/docs/",
792
+ "auth": "apiKey"
793
+ },
794
+ {
795
+ "id": "opensea",
796
+ "name": "OpenSea",
797
+ "description": "NFT marketplace",
798
+ "category": "Blockchain",
799
+ "link": "https://docs.opensea.io/reference/api-overview",
800
+ "auth": "apiKey"
801
+ },
802
+ {
803
+ "id": "nftport",
804
+ "name": "NFTPort",
805
+ "description": "NFT API",
806
+ "category": "Blockchain",
807
+ "link": "https://docs.nftport.xyz/",
808
+ "auth": "apiKey"
809
+ },
810
+ {
811
+ "id": "bubble",
812
+ "name": "Bubble",
813
+ "description": "No-code platform",
814
+ "category": "Development",
815
+ "link": "https://manual.bubble.io/",
816
+ "auth": "apiKey"
817
+ },
818
+ {
819
+ "id": "webflow",
820
+ "name": "Webflow",
821
+ "description": "Web design platform",
822
+ "category": "Development",
823
+ "link": "https://developers.webflow.com/",
824
+ "auth": "OAuth"
825
+ },
826
+ {
827
+ "id": "coda",
828
+ "name": "Coda",
829
+ "description": "Document platform",
830
+ "category": "Productivity",
831
+ "link": "https://coda.io/developers/apis/v1",
832
+ "auth": "apiKey"
833
+ },
834
+ {
835
+ "id": "retool",
836
+ "name": "Retool",
837
+ "description": "Internal tools",
838
+ "category": "Development",
839
+ "link": "https://docs.retool.com/",
840
+ "auth": "apiKey"
841
+ },
842
+ {
843
+ "id": "appsmith",
844
+ "name": "Appsmith",
845
+ "description": "Internal tools",
846
+ "category": "Development",
847
+ "link": "https://docs.appsmith.com/",
848
+ "auth": "apiKey"
849
+ },
850
+ {
851
+ "id": "budibase",
852
+ "name": "Budibase",
853
+ "description": "Internal tools",
854
+ "category": "Development",
855
+ "link": "https://docs.budibase.com/",
856
+ "auth": "apiKey"
857
+ },
858
+ {
859
+ "id": "tooljet",
860
+ "name": "Tooljet",
861
+ "description": "Low-code platform",
862
+ "category": "Development",
863
+ "link": "https://docs.tooljet.com/",
864
+ "auth": "apiKey"
865
+ },
866
+ {
867
+ "id": "noloco",
868
+ "name": "Noloco",
869
+ "description": "Internal tools",
870
+ "category": "Development",
871
+ "link": "https://docs.noloco.io/",
872
+ "auth": "apiKey"
873
+ },
874
+ {
875
+ "id": "tableau",
876
+ "name": "Tableau",
877
+ "description": "Data visualization",
878
+ "category": "Analytics",
879
+ "link": "https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api.htm",
880
+ "auth": "OAuth"
881
+ },
882
+ {
883
+ "id": "looker",
884
+ "name": "Looker",
885
+ "description": "Business intelligence",
886
+ "category": "Analytics",
887
+ "link": "https://cloud.google.com/looker/docs/api",
888
+ "auth": "OAuth"
889
+ },
890
+ {
891
+ "id": "powerbi",
892
+ "name": "PowerBI",
893
+ "description": "Business analytics",
894
+ "category": "Analytics",
895
+ "link": "https://docs.microsoft.com/en-us/rest/api/power-bi/",
896
+ "auth": "OAuth"
897
+ },
898
+ {
899
+ "id": "mode",
900
+ "name": "Mode",
901
+ "description": "Analytics platform",
902
+ "category": "Analytics",
903
+ "link": "https://mode.com/developer/api-reference/",
904
+ "auth": "apiKey"
905
+ },
906
+ {
907
+ "id": "domo",
908
+ "name": "Domo",
909
+ "description": "Business cloud",
910
+ "category": "Analytics",
911
+ "link": "https://developer.domo.com/",
912
+ "auth": "OAuth"
913
+ },
914
+ {
915
+ "id": "sisense",
916
+ "name": "Sisense",
917
+ "description": "Analytics platform",
918
+ "category": "Analytics",
919
+ "link": "https://sisense.dev/",
920
+ "auth": "apiKey"
921
+ },
922
+ {
923
+ "id": "preset",
924
+ "name": "Preset",
925
+ "description": "Data exploration",
926
+ "category": "Analytics",
927
+ "link": "https://preset.io/api/",
928
+ "auth": "apiKey"
929
+ },
930
+ {
931
+ "id": "redash",
932
+ "name": "Redash",
933
+ "description": "Data visualization",
934
+ "category": "Analytics",
935
+ "link": "https://redash.io/help/user-guide/integrations-and-api/api",
936
+ "auth": "apiKey"
937
+ },
938
+ {
939
+ "id": "observable",
940
+ "name": "Observable",
941
+ "description": "Data exploration",
942
+ "category": "Analytics",
943
+ "link": "https://observablehq.com/documentation/api/",
944
+ "auth": "apiKey"
945
+ },
946
+ {
947
+ "id": "segment",
948
+ "name": "Segment",
949
+ "description": "Customer data platform",
950
+ "category": "Analytics",
951
+ "link": "https://segment.com/docs/connections/sources/catalog/",
952
+ "auth": "apiKey"
953
+ },
954
+ {
955
+ "id": "mparticle",
956
+ "name": "mParticle",
957
+ "description": "Customer data platform",
958
+ "category": "Analytics",
959
+ "link": "https://docs.mparticle.com/developers/",
960
+ "auth": "apiKey"
961
+ },
962
+ {
963
+ "id": "rudderstack",
964
+ "name": "RudderStack",
965
+ "description": "Customer data platform",
966
+ "category": "Analytics",
967
+ "link": "https://www.rudderstack.com/docs/",
968
+ "auth": "apiKey"
969
+ },
970
+ {
971
+ "id": "amplitude",
972
+ "name": "Amplitude",
973
+ "description": "Product analytics",
974
+ "category": "Analytics",
975
+ "link": "https://www.docs.developers.amplitude.com/",
976
+ "auth": "apiKey"
977
+ },
978
+ {
979
+ "id": "heap",
980
+ "name": "Heap",
981
+ "description": "Digital insights",
982
+ "category": "Analytics",
983
+ "link": "https://developers.heap.io/",
984
+ "auth": "apiKey"
985
+ },
986
+ {
987
+ "id": "posthog",
988
+ "name": "PostHog",
989
+ "description": "Product analytics",
990
+ "category": "Analytics",
991
+ "link": "https://posthog.com/docs/api",
992
+ "auth": "apiKey"
993
+ },
994
+ {
995
+ "id": "mixpanel-api",
996
+ "name": "Mixpanel API",
997
+ "description": "Product analytics",
998
+ "category": "Analytics",
999
+ "link": "https://developer.mixpanel.com/reference/",
1000
+ "auth": "apiKey"
1001
+ },
1002
+ {
1003
+ "id": "fullstory",
1004
+ "name": "FullStory",
1005
+ "description": "Digital experience",
1006
+ "category": "Analytics",
1007
+ "link": "https://developer.fullstory.com/",
1008
+ "auth": "apiKey"
1009
+ },
1010
+ {
1011
+ "id": "hotjar",
1012
+ "name": "Hotjar",
1013
+ "description": "Behavior analytics",
1014
+ "category": "Analytics",
1015
+ "link": "https://help.hotjar.com/hc/en-us/articles/115011789688-Hotjar-API",
1016
+ "auth": "apiKey"
1017
+ },
1018
+ {
1019
+ "id": "pendo",
1020
+ "name": "Pendo",
1021
+ "description": "Product experience",
1022
+ "category": "Analytics",
1023
+ "link": "https://engageapi.pendo.io/",
1024
+ "auth": "apiKey"
1025
+ },
1026
+ {
1027
+ "id": "launchdarkly",
1028
+ "name": "LaunchDarkly",
1029
+ "description": "Feature management",
1030
+ "category": "Development",
1031
+ "link": "https://apidocs.launchdarkly.com/",
1032
+ "auth": "apiKey"
1033
+ },
1034
+ {
1035
+ "id": "split",
1036
+ "name": "Split",
1037
+ "description": "Feature delivery",
1038
+ "category": "Development",
1039
+ "link": "https://help.split.io/hc/en-us/articles/360020564931-REST-API",
1040
+ "auth": "apiKey"
1041
+ },
1042
+ {
1043
+ "id": "optimizely",
1044
+ "name": "Optimizely",
1045
+ "description": "Experimentation",
1046
+ "category": "Development",
1047
+ "link": "https://docs.developers.optimizely.com/",
1048
+ "auth": "apiKey"
1049
+ },
1050
+ {
1051
+ "id": "vwo",
1052
+ "name": "VWO",
1053
+ "description": "A/B testing",
1054
+ "category": "Development",
1055
+ "link": "https://developers.vwo.com/",
1056
+ "auth": "apiKey"
1057
+ },
1058
+ {
1059
+ "id": "ab-tasty",
1060
+ "name": "AB Tasty",
1061
+ "description": "Experience optimization",
1062
+ "category": "Development",
1063
+ "link": "https://developers.abtasty.com/",
1064
+ "auth": "apiKey"
1065
+ },
1066
+ {
1067
+ "id": "kameleoon",
1068
+ "name": "Kameleoon",
1069
+ "description": "Feature experimentation",
1070
+ "category": "Development",
1071
+ "link": "https://developers.kameleoon.com/",
1072
+ "auth": "apiKey"
1073
+ },
1074
+ {
1075
+ "id": "statsig",
1076
+ "name": "Statsig",
1077
+ "description": "Feature management",
1078
+ "category": "Development",
1079
+ "link": "https://docs.statsig.com/",
1080
+ "auth": "apiKey"
1081
+ },
1082
+ {
1083
+ "id": "flagsmith",
1084
+ "name": "Flagsmith",
1085
+ "description": "Feature flags",
1086
+ "category": "Development",
1087
+ "link": "https://docs.flagsmith.com/",
1088
+ "auth": "apiKey"
1089
+ },
1090
+ {
1091
+ "id": "growthbook",
1092
+ "name": "GrowthBook",
1093
+ "description": "Feature flags",
1094
+ "category": "Development",
1095
+ "link": "https://docs.growthbook.io/",
1096
+ "auth": "apiKey"
1097
+ },
1098
+ {
1099
+ "id": "unleash",
1100
+ "name": "Unleash",
1101
+ "description": "Feature toggles",
1102
+ "category": "Development",
1103
+ "link": "https://docs.getunleash.io/reference/api/",
1104
+ "auth": "apiKey"
1105
+ },
1106
+ {
1107
+ "id": "airbyte",
1108
+ "name": "Airbyte",
1109
+ "description": "Data integration",
1110
+ "category": "Data",
1111
+ "link": "https://docs.airbyte.com/api-documentation/",
1112
+ "auth": "apiKey"
1113
+ },
1114
+ {
1115
+ "id": "fivetran",
1116
+ "name": "Fivetran",
1117
+ "description": "Data pipelines",
1118
+ "category": "Data",
1119
+ "link": "https://fivetran.com/docs/rest-api",
1120
+ "auth": "apiKey"
1121
+ },
1122
+ {
1123
+ "id": "stitch",
1124
+ "name": "Stitch",
1125
+ "description": "ETL platform",
1126
+ "category": "Data",
1127
+ "link": "https://www.stitchdata.com/docs/developers",
1128
+ "auth": "apiKey"
1129
+ },
1130
+ {
1131
+ "id": "dbt-cloud",
1132
+ "name": "dbt Cloud",
1133
+ "description": "Data transformation",
1134
+ "category": "Data",
1135
+ "link": "https://docs.getdbt.com/dbt-cloud/api-v2",
1136
+ "auth": "apiKey"
1137
+ },
1138
+ {
1139
+ "id": "hevo",
1140
+ "name": "Hevo",
1141
+ "description": "Data pipeline",
1142
+ "category": "Data",
1143
+ "link": "https://docs.hevodata.com/",
1144
+ "auth": "apiKey"
1145
+ },
1146
+ {
1147
+ "id": "matillion",
1148
+ "name": "Matillion",
1149
+ "description": "Data integration",
1150
+ "category": "Data",
1151
+ "link": "https://documentation.matillion.com/",
1152
+ "auth": "apiKey"
1153
+ },
1154
+ {
1155
+ "id": "hightouch",
1156
+ "name": "Hightouch",
1157
+ "description": "Reverse ETL",
1158
+ "category": "Data",
1159
+ "link": "https://hightouch.com/docs/developer-tools/api",
1160
+ "auth": "apiKey"
1161
+ },
1162
+ {
1163
+ "id": "census",
1164
+ "name": "Census",
1165
+ "description": "Reverse ETL",
1166
+ "category": "Data",
1167
+ "link": "https://docs.getcensus.com/",
1168
+ "auth": "apiKey"
1169
+ },
1170
+ {
1171
+ "id": "polytomic",
1172
+ "name": "Polytomic",
1173
+ "description": "Data sync",
1174
+ "category": "Data",
1175
+ "link": "https://apidocs.polytomic.com/",
1176
+ "auth": "apiKey"
1177
+ },
1178
+ {
1179
+ "id": "grouparoo",
1180
+ "name": "Grouparoo",
1181
+ "description": "Data sync",
1182
+ "category": "Data",
1183
+ "link": "https://www.grouparoo.com/docs/",
1184
+ "auth": "apiKey"
1185
+ },
1186
+ {
1187
+ "id": "confluence",
1188
+ "name": "Confluence",
1189
+ "description": "Team workspace",
1190
+ "category": "Productivity",
1191
+ "link": "https://developer.atlassian.com/cloud/confluence/rest/",
1192
+ "auth": "OAuth"
1193
+ },
1194
+ {
1195
+ "id": "guru",
1196
+ "name": "Guru",
1197
+ "description": "Knowledge management",
1198
+ "category": "Productivity",
1199
+ "link": "https://developer.getguru.com/",
1200
+ "auth": "apiKey"
1201
+ },
1202
+ {
1203
+ "id": "tettra",
1204
+ "name": "Tettra",
1205
+ "description": "Knowledge base",
1206
+ "category": "Productivity",
1207
+ "link": "https://tettra.com/api/",
1208
+ "auth": "apiKey"
1209
+ },
1210
+ {
1211
+ "id": "slite",
1212
+ "name": "Slite",
1213
+ "description": "Team knowledge",
1214
+ "category": "Productivity",
1215
+ "link": "https://developers.slite.com/",
1216
+ "auth": "apiKey"
1217
+ },
1218
+ {
1219
+ "id": "nuclino",
1220
+ "name": "Nuclino",
1221
+ "description": "Knowledge wiki",
1222
+ "category": "Productivity",
1223
+ "link": "https://help.nuclino.com/d3f3b5cb-api",
1224
+ "auth": "apiKey"
1225
+ },
1226
+ {
1227
+ "id": "almanac",
1228
+ "name": "Almanac",
1229
+ "description": "Document platform",
1230
+ "category": "Productivity",
1231
+ "link": "https://almanac.io/api/",
1232
+ "auth": "apiKey"
1233
+ },
1234
+ {
1235
+ "id": "swimm",
1236
+ "name": "Swimm",
1237
+ "description": "Code documentation",
1238
+ "category": "Development",
1239
+ "link": "https://docs.swimm.io/",
1240
+ "auth": "apiKey"
1241
+ },
1242
+ {
1243
+ "id": "gitbook",
1244
+ "name": "GitBook",
1245
+ "description": "Documentation",
1246
+ "category": "Documentation",
1247
+ "link": "https://developer.gitbook.com/",
1248
+ "auth": "apiKey"
1249
+ },
1250
+ {
1251
+ "id": "readme",
1252
+ "name": "ReadMe",
1253
+ "description": "Developer docs",
1254
+ "category": "Documentation",
1255
+ "link": "https://docs.readme.com/reference/intro",
1256
+ "auth": "apiKey"
1257
+ },
1258
+ {
1259
+ "id": "jira",
1260
+ "name": "Jira",
1261
+ "description": "Project tracking",
1262
+ "category": "Productivity",
1263
+ "link": "https://developer.atlassian.com/cloud/jira/platform/rest/v3/",
1264
+ "auth": "OAuth"
1265
+ },
1266
+ {
1267
+ "id": "linear",
1268
+ "name": "Linear",
1269
+ "description": "Issue tracking",
1270
+ "category": "Productivity",
1271
+ "link": "https://developers.linear.app/",
1272
+ "auth": "OAuth"
1273
+ },
1274
+ {
1275
+ "id": "height",
1276
+ "name": "Height",
1277
+ "description": "Project management",
1278
+ "category": "Productivity",
1279
+ "link": "https://height.notion.site/API-9aa0e18a00824b23a1a77f2fdb2ef898",
1280
+ "auth": "apiKey"
1281
+ },
1282
+ {
1283
+ "id": "shortcut",
1284
+ "name": "Shortcut",
1285
+ "description": "Project management",
1286
+ "category": "Productivity",
1287
+ "link": "https://developer.shortcut.com/api/rest/v3",
1288
+ "auth": "apiKey"
1289
+ },
1290
+ {
1291
+ "id": "basecamp",
1292
+ "name": "Basecamp",
1293
+ "description": "Project management",
1294
+ "category": "Productivity",
1295
+ "link": "https://github.com/basecamp/bc3-api",
1296
+ "auth": "OAuth"
1297
+ },
1298
+ {
1299
+ "id": "teamwork",
1300
+ "name": "Teamwork",
1301
+ "description": "Project management",
1302
+ "category": "Productivity",
1303
+ "link": "https://developer.teamwork.com/",
1304
+ "auth": "apiKey"
1305
+ },
1306
+ {
1307
+ "id": "wrike",
1308
+ "name": "Wrike",
1309
+ "description": "Work management",
1310
+ "category": "Productivity",
1311
+ "link": "https://developers.wrike.com/",
1312
+ "auth": "OAuth"
1313
+ },
1314
+ {
1315
+ "id": "hive",
1316
+ "name": "Hive",
1317
+ "description": "Project management",
1318
+ "category": "Productivity",
1319
+ "link": "https://developers.hive.com/",
1320
+ "auth": "apiKey"
1321
+ },
1322
+ {
1323
+ "id": "nifty",
1324
+ "name": "Nifty",
1325
+ "description": "Project management",
1326
+ "category": "Productivity",
1327
+ "link": "https://niftypm.com/api/",
1328
+ "auth": "apiKey"
1329
+ },
1330
+ {
1331
+ "id": "lorem-ipsum",
1332
+ "name": "Lorem Ipsum",
1333
+ "description": "Placeholder text",
1334
+ "category": "Tools",
1335
+ "link": "https://loripsum.net/",
1336
+ "auth": "None"
1337
+ },
1338
+ {
1339
+ "id": "bacon-ipsum",
1340
+ "name": "Bacon Ipsum",
1341
+ "description": "Meaty placeholder text",
1342
+ "category": "Entertainment",
1343
+ "link": "https://baconipsum.com/json-api/",
1344
+ "auth": "None"
1345
+ },
1346
+ {
1347
+ "id": "hipster-ipsum",
1348
+ "name": "Hipster Ipsum",
1349
+ "description": "Hipster placeholder",
1350
+ "category": "Entertainment",
1351
+ "link": "https://hipsum.co/api/",
1352
+ "auth": "None"
1353
+ },
1354
+ {
1355
+ "id": "cupcake-ipsum",
1356
+ "name": "Cupcake Ipsum",
1357
+ "description": "Sweet placeholder",
1358
+ "category": "Entertainment",
1359
+ "link": "http://www.cupcakeipsum.com/",
1360
+ "auth": "None"
1361
+ },
1362
+ {
1363
+ "id": "cheese-ipsum",
1364
+ "name": "Cheese Ipsum",
1365
+ "description": "Cheesy placeholder",
1366
+ "category": "Entertainment",
1367
+ "link": "http://www.cheeseipsum.co.uk/",
1368
+ "auth": "None"
1369
+ },
1370
+ {
1371
+ "id": "pirate-ipsum",
1372
+ "name": "Pirate Ipsum",
1373
+ "description": "Pirate placeholder",
1374
+ "category": "Entertainment",
1375
+ "link": "https://pirateipsum.me/api",
1376
+ "auth": "None"
1377
+ },
1378
+ {
1379
+ "id": "zombie-ipsum",
1380
+ "name": "Zombie Ipsum",
1381
+ "description": "Zombie placeholder",
1382
+ "category": "Entertainment",
1383
+ "link": "http://www.zombieipsum.com/",
1384
+ "auth": "None"
1385
+ },
1386
+ {
1387
+ "id": "samuel-l-ipsum",
1388
+ "name": "Samuel L Ipsum",
1389
+ "description": "Samuel L Jackson text",
1390
+ "category": "Entertainment",
1391
+ "link": "https://slipsum.com/",
1392
+ "auth": "None"
1393
+ },
1394
+ {
1395
+ "id": "office-ipsum",
1396
+ "name": "Office Ipsum",
1397
+ "description": "Office jargon",
1398
+ "category": "Entertainment",
1399
+ "link": "http://officeipsum.com/",
1400
+ "auth": "None"
1401
+ },
1402
+ {
1403
+ "id": "cat-ipsum",
1404
+ "name": "Cat Ipsum",
1405
+ "description": "Cat-themed placeholder",
1406
+ "category": "Entertainment",
1407
+ "link": "http://www.catipsum.com/",
1408
+ "auth": "None"
1409
+ }
1410
+ ]