@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.
- package/AGENTS.md +50 -33
- package/README.md +22 -12
- package/SOUL.md +60 -19
- package/STATUS.md +91 -169
- package/convex/_generated/api.d.ts +6 -0
- package/convex/directCall.ts +598 -0
- package/convex/providers.ts +341 -26
- package/convex/schema.ts +87 -0
- package/convex/usage.ts +260 -0
- package/convex/waitlist.ts +55 -0
- package/data/combined-02-26.json +22102 -0
- package/data/night-expansion-02-26-06-batch2.json +1898 -0
- package/data/night-expansion-02-26-06-batch3.json +1410 -0
- package/data/night-expansion-02-26-06.json +3146 -0
- package/data/night-expansion-02-26-full.json +9726 -0
- package/data/night-expansion-02-26-v2.json +330 -0
- package/data/night-expansion-02-26.json +171 -0
- package/dist/crypto.d.ts +7 -0
- package/dist/crypto.d.ts.map +1 -0
- package/dist/crypto.js +67 -0
- package/dist/crypto.js.map +1 -0
- package/dist/execute-dynamic.d.ts +116 -0
- package/dist/execute-dynamic.d.ts.map +1 -0
- package/dist/execute-dynamic.js +456 -0
- package/dist/execute-dynamic.js.map +1 -0
- package/dist/execute.d.ts +2 -1
- package/dist/execute.d.ts.map +1 -1
- package/dist/execute.js +35 -5
- package/dist/execute.js.map +1 -1
- package/dist/index.js +33 -4
- package/dist/index.js.map +1 -1
- package/dist/registry/apis.json +2081 -3
- package/docs/PRD-customer-key-passthrough.md +184 -0
- package/landing/public/badges/available-on-apiclaw.svg +14 -0
- package/landing/scripts/generate-stats.js +75 -4
- package/landing/src/app/admin/page.tsx +1 -1
- package/landing/src/app/api/auth/magic-link/route.ts +1 -1
- package/landing/src/app/api/auth/session/route.ts +1 -1
- package/landing/src/app/api/auth/verify/route.ts +1 -1
- package/landing/src/app/api/og/route.tsx +5 -3
- package/landing/src/app/docs/page.tsx +5 -4
- package/landing/src/app/earn/page.tsx +14 -11
- package/landing/src/app/globals.css +16 -15
- package/landing/src/app/layout.tsx +2 -2
- package/landing/src/app/page.tsx +425 -254
- package/landing/src/app/providers/dashboard/[apiId]/actions/[actionId]/edit/page.tsx +600 -0
- package/landing/src/app/providers/dashboard/[apiId]/actions/new/page.tsx +583 -0
- package/landing/src/app/providers/dashboard/[apiId]/actions/page.tsx +301 -0
- package/landing/src/app/providers/dashboard/[apiId]/direct-call/page.tsx +659 -0
- package/landing/src/app/providers/dashboard/[apiId]/page.tsx +381 -0
- package/landing/src/app/providers/dashboard/[apiId]/test/page.tsx +418 -0
- package/landing/src/app/providers/dashboard/layout.tsx +292 -0
- package/landing/src/app/providers/dashboard/page.tsx +353 -290
- package/landing/src/app/providers/register/page.tsx +87 -10
- package/landing/src/components/AiClientDropdown.tsx +85 -0
- package/landing/src/components/ConfigHelperModal.tsx +113 -0
- package/landing/src/components/HeroTabs.tsx +187 -0
- package/landing/src/components/ShareIntegrationModal.tsx +198 -0
- package/landing/src/hooks/useDashboardData.ts +53 -1
- package/landing/src/lib/apis.json +46554 -174
- package/landing/src/lib/convex-client.ts +22 -3
- package/landing/src/lib/stats.json +4 -4
- package/landing/tsconfig.tsbuildinfo +1 -1
- package/night-expansion-02-26-06-batch2.py +368 -0
- package/night-expansion-02-26-06-batch3.py +299 -0
- package/night-expansion-02-26-06.py +756 -0
- package/package.json +1 -1
- package/scripts/bulk-add-public-apis-v2.py +418 -0
- package/scripts/night-expansion-02-26-v2.py +296 -0
- package/scripts/night-expansion-02-26.py +890 -0
- package/scripts/seed-complete-api.js +181 -0
- package/scripts/seed-demo-api.sh +44 -0
- package/src/crypto.ts +75 -0
- package/src/execute-dynamic.ts +589 -0
- package/src/execute.ts +41 -5
- package/src/index.ts +38 -4
- package/src/registry/apis.json +2081 -3
|
@@ -0,0 +1,890 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
APIClaw Night Expansion 2026-02-26
|
|
4
|
+
Target: 1000+ APIs from multiple sources
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import json
|
|
8
|
+
import re
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
OUTPUT_PATH = Path(__file__).parent.parent / "data" / "night-expansion-02-26-full.json"
|
|
12
|
+
|
|
13
|
+
def generate_id(name: str) -> str:
|
|
14
|
+
"""Generate clean ID from name"""
|
|
15
|
+
clean = re.sub(r'[^a-z0-9]+', '-', name.lower()).strip('-')
|
|
16
|
+
return clean[:50]
|
|
17
|
+
|
|
18
|
+
# Massive API batch from n0shake Public-APIs and public-apis/public-apis
|
|
19
|
+
APIS = [
|
|
20
|
+
# === ANIMALS ===
|
|
21
|
+
{"name": "AdoptAPet", "description": "Resource to help get pets adopted", "category": "Animals", "link": "https://www.adoptapet.com/public/apis/pet_list.html", "auth": "apiKey"},
|
|
22
|
+
{"name": "Axolotl API", "description": "Collection of axolotl pictures and facts", "category": "Animals", "link": "https://theaxolotlapi.netlify.app/", "auth": "None"},
|
|
23
|
+
{"name": "Cat Facts API", "description": "Daily cat facts", "category": "Animals", "link": "https://alexwohlbruck.github.io/cat-facts/", "auth": "None"},
|
|
24
|
+
{"name": "Cataas", "description": "Cat as a service (cats pictures and gifs)", "category": "Animals", "link": "https://cataas.com/", "auth": "None"},
|
|
25
|
+
{"name": "TheCatAPI", "description": "Pictures of cats from Tumblr", "category": "Animals", "link": "https://docs.thecatapi.com/", "auth": "apiKey"},
|
|
26
|
+
{"name": "Dog Facts API", "description": "Random dog facts", "category": "Animals", "link": "https://dukengn.github.io/Dog-facts-API/", "auth": "None"},
|
|
27
|
+
{"name": "Dogs API", "description": "Based on the Stanford Dogs Dataset", "category": "Animals", "link": "https://dog.ceo/dog-api/", "auth": "None"},
|
|
28
|
+
{"name": "eBird API", "description": "Retrieve recent or notable birding observations", "category": "Animals", "link": "https://documenter.getpostman.com/view/664302/S1ENwy59", "auth": "apiKey"},
|
|
29
|
+
{"name": "FishWatch API", "description": "Information and pictures about fish species", "category": "Animals", "link": "https://www.fishwatch.gov/developers", "auth": "None"},
|
|
30
|
+
{"name": "HTTP Cat", "description": "Cat for every HTTP Status", "category": "Entertainment", "link": "https://http.cat/", "auth": "None"},
|
|
31
|
+
{"name": "HTTP Dog", "description": "Dogs for every HTTP response status code", "category": "Entertainment", "link": "https://http.dog/", "auth": "None"},
|
|
32
|
+
{"name": "IUCN Red List", "description": "IUCN Red List of Threatened Species", "category": "Science", "link": "http://apiv3.iucnredlist.org/api/v3/docs", "auth": "apiKey"},
|
|
33
|
+
{"name": "MeowFacts", "description": "Get random cat facts", "category": "Animals", "link": "https://github.com/wh-iterabb-it/meowfacts", "auth": "None"},
|
|
34
|
+
{"name": "Movebank API", "description": "Movement and Migration data of animals", "category": "Science", "link": "https://github.com/movebank/movebank-api-doc", "auth": "None"},
|
|
35
|
+
{"name": "Petfinder API", "description": "Help pets find homes", "category": "Animals", "link": "https://www.petfinder.com/developers/", "auth": "apiKey"},
|
|
36
|
+
{"name": "PlaceBear", "description": "Placeholder bear pictures", "category": "Design", "link": "https://placebear.com/", "auth": "None"},
|
|
37
|
+
{"name": "PlaceDog", "description": "Placeholder Dog pictures", "category": "Design", "link": "https://place.dog", "auth": "None"},
|
|
38
|
+
{"name": "PlaceKitten", "description": "Placeholder Kitten pictures", "category": "Design", "link": "https://placekitten.com/", "auth": "None"},
|
|
39
|
+
{"name": "RandomDog", "description": "Random pictures of dogs", "category": "Entertainment", "link": "https://random.dog/woof.json", "auth": "None"},
|
|
40
|
+
{"name": "RandomDuck", "description": "Random pictures of ducks", "category": "Entertainment", "link": "https://random-d.uk/api", "auth": "None"},
|
|
41
|
+
{"name": "RandomFox", "description": "Random pictures of foxes", "category": "Entertainment", "link": "https://randomfox.ca/floof/", "auth": "None"},
|
|
42
|
+
{"name": "RescueGroups", "description": "Pet adoption data", "category": "Animals", "link": "https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home", "auth": "None"},
|
|
43
|
+
{"name": "Shibe Online", "description": "Random Shiba Inu, cats or birds", "category": "Entertainment", "link": "http://shibe.online/", "auth": "None"},
|
|
44
|
+
{"name": "TheDogAPI", "description": "Public service all about Dogs", "category": "Animals", "link": "https://thedogapi.com/", "auth": "apiKey"},
|
|
45
|
+
{"name": "xeno-canto", "description": "Bird recordings", "category": "Science", "link": "https://xeno-canto.org/explore/api", "auth": "None"},
|
|
46
|
+
{"name": "Zoo Animals API", "description": "Facts and pictures of zoo animals", "category": "Animals", "link": "https://zoo-animal-api.herokuapp.com/", "auth": "None"},
|
|
47
|
+
|
|
48
|
+
# === ANIME ===
|
|
49
|
+
{"name": "AniAPI", "description": "Anime discovery, streaming & syncing with trackers", "category": "Entertainment", "link": "https://aniapi.com/docs/", "auth": "OAuth"},
|
|
50
|
+
{"name": "AniDB", "description": "Anime Database", "category": "Entertainment", "link": "https://wiki.anidb.net/HTTP_API_Definition", "auth": "apiKey"},
|
|
51
|
+
{"name": "AniList GraphQL", "description": "Anime discovery & tracking", "category": "Entertainment", "link": "https://github.com/AniList/ApiV2-GraphQL-Docs", "auth": "OAuth"},
|
|
52
|
+
{"name": "AnimeChan", "description": "Anime quotes (over 10k+)", "category": "Entertainment", "link": "https://github.com/RocktimSaikia/anime-chan", "auth": "None"},
|
|
53
|
+
{"name": "AnimeFacts", "description": "Anime Facts (over 100+)", "category": "Entertainment", "link": "https://chandan-02.github.io/anime-facts-rest-api/", "auth": "None"},
|
|
54
|
+
{"name": "AnimeNewsNetwork", "description": "Anime industry news", "category": "News", "link": "https://www.animenewsnetwork.com/encyclopedia/api.php", "auth": "None"},
|
|
55
|
+
{"name": "Catboy API", "description": "Neko images, funny GIFs & more", "category": "Entertainment", "link": "https://catboys.com/api", "auth": "None"},
|
|
56
|
+
{"name": "Danbooru Anime", "description": "Anime artist database", "category": "Entertainment", "link": "https://danbooru.donmai.us/wiki_pages/help:api", "auth": "apiKey"},
|
|
57
|
+
{"name": "Jikan MyAnimeList", "description": "Unofficial MyAnimeList API", "category": "Entertainment", "link": "https://jikan.moe", "auth": "None"},
|
|
58
|
+
{"name": "Kitsu Anime", "description": "Anime discovery platform", "category": "Entertainment", "link": "https://kitsu.docs.apiary.io/", "auth": "OAuth"},
|
|
59
|
+
{"name": "MangaDex", "description": "Manga Database and Community", "category": "Entertainment", "link": "https://api.mangadex.org/docs.html", "auth": "apiKey"},
|
|
60
|
+
{"name": "MyAnimeList", "description": "Anime and Manga Database", "category": "Entertainment", "link": "https://myanimelist.net/clubs.php?cid=13727", "auth": "OAuth"},
|
|
61
|
+
{"name": "NekosBest", "description": "Neko Images & Anime roleplaying GIFs", "category": "Entertainment", "link": "https://docs.nekos.best", "auth": "None"},
|
|
62
|
+
{"name": "Shikimori", "description": "Anime discovery and tracking", "category": "Entertainment", "link": "https://shikimori.one/api/doc", "auth": "OAuth"},
|
|
63
|
+
{"name": "Studio Ghibli API", "description": "Resources from Studio Ghibli films", "category": "Entertainment", "link": "https://ghibliapi.herokuapp.com", "auth": "None"},
|
|
64
|
+
{"name": "Trace Moe", "description": "Get anime scene from screenshot", "category": "AI/ML", "link": "https://soruly.github.io/trace.moe-api/#/", "auth": "None"},
|
|
65
|
+
{"name": "Waifu.im", "description": "Waifu pictures from archive", "category": "Entertainment", "link": "https://waifu.im/docs", "auth": "None"},
|
|
66
|
+
{"name": "Waifu.pics", "description": "Anime image sharing platform", "category": "Entertainment", "link": "https://waifu.pics/docs", "auth": "None"},
|
|
67
|
+
|
|
68
|
+
# === SECURITY ===
|
|
69
|
+
{"name": "AbuseIPDB", "description": "IP/domain/URL reputation", "category": "Security", "link": "https://docs.abuseipdb.com/", "auth": "apiKey"},
|
|
70
|
+
{"name": "AlienVault OTX", "description": "Open Threat Exchange", "category": "Security", "link": "https://otx.alienvault.com/api", "auth": "apiKey"},
|
|
71
|
+
{"name": "CAPEsandbox", "description": "Malware execution and analysis", "category": "Security", "link": "https://capev2.readthedocs.io/en/latest/usage/api.html", "auth": "apiKey"},
|
|
72
|
+
{"name": "Google Safe Browsing", "description": "Link/Domain Flagging", "category": "Security", "link": "https://developers.google.com/safe-browsing/", "auth": "apiKey"},
|
|
73
|
+
{"name": "MalDatabase", "description": "Malware datasets and threat intelligence", "category": "Security", "link": "https://maldatabase.com/api-doc.html", "auth": "apiKey"},
|
|
74
|
+
{"name": "MalShare", "description": "Malware Archive", "category": "Security", "link": "https://malshare.com/doc.php", "auth": "apiKey"},
|
|
75
|
+
{"name": "MalwareBazaar", "description": "Collect and share malware samples", "category": "Security", "link": "https://bazaar.abuse.ch/api/", "auth": "apiKey"},
|
|
76
|
+
{"name": "Metacert", "description": "Link Flagging service", "category": "Security", "link": "https://metacert.com/", "auth": "apiKey"},
|
|
77
|
+
{"name": "NoPhishy", "description": "Phishing detection", "category": "Security", "link": "https://rapidapi.com/Amiichu/api/exerra-phishing-check/", "auth": "apiKey"},
|
|
78
|
+
{"name": "Phisherman", "description": "IP/domain/URL reputation", "category": "Security", "link": "https://phisherman.gg/", "auth": "apiKey"},
|
|
79
|
+
{"name": "Scanii", "description": "Threat detection in files", "category": "Security", "link": "https://docs.scanii.com/", "auth": "apiKey"},
|
|
80
|
+
{"name": "URLhaus", "description": "Malware URL database", "category": "Security", "link": "https://urlhaus-api.abuse.ch/", "auth": "None"},
|
|
81
|
+
{"name": "URLScan.io", "description": "Scan and Analyse URLs", "category": "Security", "link": "https://urlscan.io/about-api/", "auth": "apiKey"},
|
|
82
|
+
{"name": "VirusTotal", "description": "File/URL Analysis", "category": "Security", "link": "https://www.virustotal.com/en/documentation/public-api/", "auth": "apiKey"},
|
|
83
|
+
{"name": "Web of Trust API", "description": "Domain reputation", "category": "Security", "link": "https://support.mywot.com/hc/en-us/sections/360004477734-API-", "auth": "apiKey"},
|
|
84
|
+
|
|
85
|
+
# === ART & DESIGN ===
|
|
86
|
+
{"name": "Améthyste API", "description": "Generate images for Discord users", "category": "Design", "link": "https://api.amethyste.moe/", "auth": "apiKey"},
|
|
87
|
+
{"name": "Art Institute of Chicago", "description": "Art museum API", "category": "Content", "link": "https://api.artic.edu/docs/", "auth": "None"},
|
|
88
|
+
{"name": "Colormind", "description": "Color scheme generator", "category": "Design", "link": "http://colormind.io/api-access/", "auth": "None"},
|
|
89
|
+
{"name": "ColourLovers", "description": "Patterns, palettes and images", "category": "Design", "link": "http://www.colourlovers.com/api", "auth": "None"},
|
|
90
|
+
{"name": "Cooper Hewitt", "description": "Smithsonian Design Museum", "category": "Content", "link": "https://collection.cooperhewitt.org/api", "auth": "apiKey"},
|
|
91
|
+
{"name": "Dribbble API", "description": "Design community", "category": "Design", "link": "http://developer.dribbble.com/", "auth": "OAuth"},
|
|
92
|
+
{"name": "EmojiHub", "description": "Emojis by categories and groups", "category": "Content", "link": "https://github.com/cheatsnake/emojihub", "auth": "None"},
|
|
93
|
+
{"name": "Europeana", "description": "European Museum content", "category": "Content", "link": "https://pro.europeana.eu/resources/apis/search", "auth": "apiKey"},
|
|
94
|
+
{"name": "Harvard Art Museums", "description": "Art from Harvard", "category": "Content", "link": "https://github.com/harvardartmuseums/api-docs", "auth": "apiKey"},
|
|
95
|
+
{"name": "Icon Horse", "description": "Favicons for any website", "category": "Design", "link": "https://icon.horse", "auth": "None"},
|
|
96
|
+
{"name": "Iconfinder", "description": "Icons API", "category": "Design", "link": "https://developer.iconfinder.com", "auth": "apiKey"},
|
|
97
|
+
{"name": "Icons8", "description": "Icon search", "category": "Design", "link": "https://img.icons8.com/", "auth": "None"},
|
|
98
|
+
{"name": "Lordicon", "description": "Animated icons", "category": "Design", "link": "https://lordicon.com/", "auth": "None"},
|
|
99
|
+
{"name": "Metropolitan Museum of Art", "description": "Met Museum data", "category": "Content", "link": "https://metmuseum.github.io/", "auth": "None"},
|
|
100
|
+
{"name": "Noun Project", "description": "Icons", "category": "Design", "link": "http://api.thenounproject.com/index.html", "auth": "OAuth"},
|
|
101
|
+
{"name": "PHP-Noise", "description": "Noise Background Image Generator", "category": "Design", "link": "https://php-noise.com/", "auth": "None"},
|
|
102
|
+
{"name": "Pixel Encounter", "description": "SVG Icon Generator", "category": "Design", "link": "https://pixelencounter.com/api", "auth": "None"},
|
|
103
|
+
{"name": "Rijksmuseum", "description": "RijksMuseum Data", "category": "Content", "link": "https://data.rijksmuseum.nl/object-metadata/api/", "auth": "apiKey"},
|
|
104
|
+
{"name": "Word Cloud API", "description": "Create word clouds", "category": "Design", "link": "https://wordcloudapi.com/", "auth": "apiKey"},
|
|
105
|
+
{"name": "xColors", "description": "Generate & convert colors", "category": "Design", "link": "https://x-colors.herokuapp.com/", "auth": "None"},
|
|
106
|
+
|
|
107
|
+
# === AUTHENTICATION ===
|
|
108
|
+
{"name": "Auth0 API", "description": "Authentication platform", "category": "Security", "link": "https://auth0.com", "auth": "apiKey"},
|
|
109
|
+
{"name": "GetOTP", "description": "Implement OTP flow", "category": "Security", "link": "https://otp.dev/en/docs/", "auth": "apiKey"},
|
|
110
|
+
{"name": "MojoAuth", "description": "Passwordless authentication", "category": "Security", "link": "https://mojoauth.com", "auth": "apiKey"},
|
|
111
|
+
{"name": "SAWO Labs", "description": "Passwordless auth integration", "category": "Security", "link": "https://sawolabs.com", "auth": "apiKey"},
|
|
112
|
+
{"name": "Stytch", "description": "User infrastructure for apps", "category": "Security", "link": "https://stytch.com/", "auth": "apiKey"},
|
|
113
|
+
{"name": "Warrant", "description": "Authorization and access control", "category": "Security", "link": "https://warrant.dev/", "auth": "apiKey"},
|
|
114
|
+
|
|
115
|
+
# === BLOCKCHAIN ===
|
|
116
|
+
{"name": "Bitquery", "description": "Onchain GraphQL APIs & DEX APIs", "category": "Blockchain", "link": "https://graphql.bitquery.io/ide", "auth": "apiKey"},
|
|
117
|
+
{"name": "Chainlink", "description": "Build hybrid smart contracts", "category": "Blockchain", "link": "https://chain.link/developer-resources", "auth": "None"},
|
|
118
|
+
{"name": "Chainpoint", "description": "Anchor data to Bitcoin blockchain", "category": "Blockchain", "link": "https://tierion.com/chainpoint/", "auth": "None"},
|
|
119
|
+
{"name": "Covalent API", "description": "Multi-blockchain data aggregator", "category": "Blockchain", "link": "https://www.covalenthq.com/docs/api/", "auth": "apiKey"},
|
|
120
|
+
{"name": "Etherscan", "description": "Ethereum explorer API", "category": "Blockchain", "link": "https://etherscan.io/apis", "auth": "apiKey"},
|
|
121
|
+
{"name": "Helium API", "description": "Helium network data", "category": "Blockchain", "link": "https://docs.helium.com/api/blockchain/introduction/", "auth": "None"},
|
|
122
|
+
{"name": "Nownodes", "description": "Blockchain-as-a-service", "category": "Blockchain", "link": "https://nownodes.io/", "auth": "apiKey"},
|
|
123
|
+
{"name": "The Graph", "description": "Indexing protocol for blockchain", "category": "Blockchain", "link": "https://thegraph.com", "auth": "apiKey"},
|
|
124
|
+
{"name": "Watchdata", "description": "Ethereum blockchain API", "category": "Blockchain", "link": "https://docs.watchdata.io", "auth": "apiKey"},
|
|
125
|
+
|
|
126
|
+
# === BOOKS ===
|
|
127
|
+
{"name": "A Bíblia Digital", "description": "Bible versions API", "category": "Content", "link": "https://www.abibliadigital.com.br/en", "auth": "apiKey"},
|
|
128
|
+
{"name": "Bhagavad Gita API", "description": "Bhagavad Gita text", "category": "Content", "link": "https://docs.bhagavadgitaapi.in", "auth": "apiKey"},
|
|
129
|
+
{"name": "Bible-api", "description": "Free Bible API", "category": "Content", "link": "https://bible-api.com/", "auth": "None"},
|
|
130
|
+
{"name": "British National Bibliography", "description": "Books data", "category": "Content", "link": "http://bnb.data.bl.uk/", "auth": "None"},
|
|
131
|
+
{"name": "Crossref Metadata", "description": "Books & Articles Metadata", "category": "Content", "link": "https://github.com/CrossRef/rest-api-doc", "auth": "None"},
|
|
132
|
+
{"name": "Google Books", "description": "Books search", "category": "Content", "link": "https://developers.google.com/books/", "auth": "OAuth"},
|
|
133
|
+
{"name": "Gutendex", "description": "Project Gutenberg Books API", "category": "Content", "link": "https://gutendex.com/", "auth": "None"},
|
|
134
|
+
{"name": "Open Library", "description": "Books and book covers", "category": "Content", "link": "https://openlibrary.org/developers/api", "auth": "None"},
|
|
135
|
+
{"name": "PoetryDB", "description": "Poetry collection API", "category": "Content", "link": "https://github.com/thundercomb/poetrydb#readme", "auth": "None"},
|
|
136
|
+
{"name": "Quran API", "description": "RESTful Quran API", "category": "Content", "link": "https://quran.api-docs.io/", "auth": "None"},
|
|
137
|
+
{"name": "Quran Cloud", "description": "Quran in multiple languages", "category": "Content", "link": "https://alquran.cloud/api", "auth": "None"},
|
|
138
|
+
{"name": "Wizard World API", "description": "Harry Potter universe data", "category": "Entertainment", "link": "https://wizard-world-api.herokuapp.com/swagger/index.html", "auth": "None"},
|
|
139
|
+
|
|
140
|
+
# === BUSINESS ===
|
|
141
|
+
{"name": "Apache Superset", "description": "BI dashboards API", "category": "Business", "link": "https://superset.apache.org/docs/api", "auth": "apiKey"},
|
|
142
|
+
{"name": "Charity Search", "description": "Non-profit charity data", "category": "Business", "link": "http://charityapi.orghunter.com/", "auth": "apiKey"},
|
|
143
|
+
{"name": "Clearbit Logo", "description": "Company logos", "category": "Business", "link": "https://clearbit.com/docs#logo-api", "auth": "apiKey"},
|
|
144
|
+
{"name": "Domainsdb.info", "description": "Domain names search", "category": "Business", "link": "https://domainsdb.info/", "auth": "None"},
|
|
145
|
+
{"name": "Freelancer API", "description": "Hire freelancers", "category": "Business", "link": "https://developers.freelancer.com", "auth": "OAuth"},
|
|
146
|
+
{"name": "Gmail API", "description": "Access Gmail inbox", "category": "Communication", "link": "https://developers.google.com/gmail/api/", "auth": "OAuth"},
|
|
147
|
+
{"name": "Google Analytics", "description": "Analytics data", "category": "Analytics", "link": "https://developers.google.com/analytics/", "auth": "OAuth"},
|
|
148
|
+
{"name": "Instatus API", "description": "Status page API", "category": "DevOps", "link": "https://instatus.com/help/api", "auth": "apiKey"},
|
|
149
|
+
{"name": "Mailchimp", "description": "Marketing campaigns", "category": "Communication", "link": "https://mailchimp.com/developer/", "auth": "apiKey"},
|
|
150
|
+
{"name": "ORB Intelligence", "description": "Company lookup", "category": "Business", "link": "https://api.orb-intelligence.com/docs/", "auth": "apiKey"},
|
|
151
|
+
{"name": "Redash API", "description": "Queries and dashboards", "category": "Analytics", "link": "https://redash.io/help/user-guide/integrations-and-api/api", "auth": "apiKey"},
|
|
152
|
+
{"name": "Smartsheet", "description": "Smartsheet data access", "category": "Business", "link": "https://smartsheet.redoc.ly/", "auth": "OAuth"},
|
|
153
|
+
{"name": "Square API", "description": "Payments and commerce", "category": "Finance", "link": "https://developer.squareup.com/reference/square", "auth": "OAuth"},
|
|
154
|
+
{"name": "Tomba Email Finder", "description": "Email finder for B2B", "category": "Business", "link": "https://tomba.io/api", "auth": "apiKey"},
|
|
155
|
+
{"name": "Trello API", "description": "Project management", "category": "Business", "link": "https://developers.trello.com/", "auth": "OAuth"},
|
|
156
|
+
|
|
157
|
+
# === CALENDAR ===
|
|
158
|
+
{"name": "Abstract Holidays", "description": "Worldwide holidays via API", "category": "Calendar", "link": "https://www.abstractapi.com/holidays-api", "auth": "apiKey"},
|
|
159
|
+
{"name": "Calendarific", "description": "Worldwide Holidays", "category": "Calendar", "link": "https://calendarific.com/", "auth": "apiKey"},
|
|
160
|
+
{"name": "Church Calendar", "description": "Catholic liturgical calendar", "category": "Calendar", "link": "http://calapi.inadiutorium.cz/", "auth": "None"},
|
|
161
|
+
{"name": "Festivo Public Holidays", "description": "Public holiday service", "category": "Calendar", "link": "https://docs.getfestivo.com/docs/products/public-holidays-api/intro", "auth": "apiKey"},
|
|
162
|
+
{"name": "Google Calendar API", "description": "Calendar management", "category": "Calendar", "link": "https://developers.google.com/google-apps/calendar/", "auth": "OAuth"},
|
|
163
|
+
{"name": "Hebrew Calendar", "description": "Hebrew calendar conversion", "category": "Calendar", "link": "https://www.hebcal.com/home/developer-apis", "auth": "None"},
|
|
164
|
+
{"name": "Holiday API", "description": "Historical holidays", "category": "Calendar", "link": "https://holidayapi.com/", "auth": "apiKey"},
|
|
165
|
+
{"name": "Nager Date", "description": "Public holidays 90+ countries", "category": "Calendar", "link": "https://date.nager.at", "auth": "None"},
|
|
166
|
+
{"name": "Namedays Calendar", "description": "Namedays for multiple countries", "category": "Calendar", "link": "https://nameday.abalin.net", "auth": "None"},
|
|
167
|
+
{"name": "UK Bank Holidays", "description": "UK Bank holidays", "category": "Calendar", "link": "https://www.gov.uk/bank-holidays.json", "auth": "None"},
|
|
168
|
+
|
|
169
|
+
# === CLOUD STORAGE ===
|
|
170
|
+
{"name": "Box API", "description": "File sharing and storage", "category": "Cloud", "link": "https://developer.box.com/", "auth": "OAuth"},
|
|
171
|
+
{"name": "Dropbox API", "description": "File sharing and storage", "category": "Cloud", "link": "https://www.dropbox.com/developers", "auth": "OAuth"},
|
|
172
|
+
{"name": "File.io", "description": "Simple file sharing", "category": "Cloud", "link": "https://www.file.io", "auth": "None"},
|
|
173
|
+
{"name": "Filestack", "description": "File uploader API", "category": "Cloud", "link": "https://www.filestack.com", "auth": "apiKey"},
|
|
174
|
+
{"name": "GoFile", "description": "Unlimited file uploads", "category": "Cloud", "link": "https://gofile.io/api", "auth": "apiKey"},
|
|
175
|
+
{"name": "Google Drive API", "description": "File sharing and storage", "category": "Cloud", "link": "https://developers.google.com/drive/", "auth": "OAuth"},
|
|
176
|
+
{"name": "Gyazo", "description": "Screen capture sharing", "category": "Cloud", "link": "https://gyazo.com/api/docs", "auth": "apiKey"},
|
|
177
|
+
{"name": "Imgbb", "description": "Private image sharing", "category": "Cloud", "link": "https://api.imgbb.com/", "auth": "apiKey"},
|
|
178
|
+
{"name": "OneDrive API", "description": "Microsoft file storage", "category": "Cloud", "link": "https://developer.microsoft.com/onedrive", "auth": "OAuth"},
|
|
179
|
+
{"name": "Pantry", "description": "Free JSON storage", "category": "Cloud", "link": "https://getpantry.cloud/", "auth": "None"},
|
|
180
|
+
{"name": "Pastebin", "description": "Plain text storage", "category": "Cloud", "link": "https://pastebin.com/doc_api", "auth": "apiKey"},
|
|
181
|
+
{"name": "Pinata IPFS", "description": "IPFS Pinning Services", "category": "Cloud", "link": "https://docs.pinata.cloud/", "auth": "apiKey"},
|
|
182
|
+
{"name": "Storj", "description": "Decentralized cloud storage", "category": "Cloud", "link": "https://docs.storj.io/dcs/", "auth": "apiKey"},
|
|
183
|
+
{"name": "Web3 Storage", "description": "IPFS file sharing", "category": "Cloud", "link": "https://web3.storage/", "auth": "apiKey"},
|
|
184
|
+
|
|
185
|
+
# === CRYPTOCURRENCY ===
|
|
186
|
+
{"name": "0x API", "description": "Token and pool stats", "category": "Cryptocurrency", "link": "https://0x.org/api", "auth": "None"},
|
|
187
|
+
{"name": "1inch API", "description": "DEX aggregator", "category": "Cryptocurrency", "link": "https://1inch.io/api/", "auth": "None"},
|
|
188
|
+
{"name": "Alchemy Ethereum", "description": "Ethereum Node-as-a-Service", "category": "Cryptocurrency", "link": "https://docs.alchemy.com/alchemy/", "auth": "apiKey"},
|
|
189
|
+
{"name": "Binance API", "description": "Cryptocurrency trading", "category": "Cryptocurrency", "link": "https://github.com/binance/binance-spot-api-docs", "auth": "apiKey"},
|
|
190
|
+
{"name": "Bitfinex API", "description": "Cryptocurrency trading", "category": "Cryptocurrency", "link": "https://docs.bitfinex.com/docs", "auth": "apiKey"},
|
|
191
|
+
{"name": "Blockchain.com", "description": "Bitcoin data", "category": "Cryptocurrency", "link": "https://www.blockchain.com/api", "auth": "apiKey"},
|
|
192
|
+
{"name": "blockfrost Cardano", "description": "Cardano mainnet API", "category": "Cryptocurrency", "link": "https://blockfrost.io/", "auth": "apiKey"},
|
|
193
|
+
{"name": "Bybit API", "description": "Cryptocurrency data feed", "category": "Cryptocurrency", "link": "https://bybit-exchange.github.io/docs/linear/#t-introduction", "auth": "apiKey"},
|
|
194
|
+
{"name": "CoinAPI", "description": "Currency exchanges API", "category": "Cryptocurrency", "link": "https://docs.coinapi.io/", "auth": "apiKey"},
|
|
195
|
+
{"name": "Coinbase API", "description": "Cryptocurrency prices", "category": "Cryptocurrency", "link": "https://developers.coinbase.com", "auth": "apiKey"},
|
|
196
|
+
{"name": "CoinCap", "description": "Real time crypto prices", "category": "Cryptocurrency", "link": "https://docs.coincap.io/", "auth": "None"},
|
|
197
|
+
{"name": "CoinDCX", "description": "Indian crypto trading", "category": "Cryptocurrency", "link": "https://docs.coindcx.com/", "auth": "apiKey"},
|
|
198
|
+
{"name": "CoinDesk API", "description": "Bitcoin Price Index", "category": "Cryptocurrency", "link": "https://old.coindesk.com/coindesk-api/", "auth": "None"},
|
|
199
|
+
{"name": "CoinGecko", "description": "Cryptocurrency data", "category": "Cryptocurrency", "link": "http://www.coingecko.com/api", "auth": "None"},
|
|
200
|
+
{"name": "CoinMarketCap", "description": "Cryptocurrency prices", "category": "Cryptocurrency", "link": "https://coinmarketcap.com/api/", "auth": "apiKey"},
|
|
201
|
+
{"name": "Coinpaprika", "description": "Crypto prices and volume", "category": "Cryptocurrency", "link": "https://api.coinpaprika.com", "auth": "None"},
|
|
202
|
+
{"name": "CoinRanking", "description": "Live crypto data", "category": "Cryptocurrency", "link": "https://developers.coinranking.com/api/documentation", "auth": "apiKey"},
|
|
203
|
+
{"name": "CryptoCompare", "description": "Crypto comparison", "category": "Cryptocurrency", "link": "https://www.cryptocompare.com/api#", "auth": "None"},
|
|
204
|
+
{"name": "dYdX API", "description": "Decentralized exchange", "category": "Cryptocurrency", "link": "https://docs.dydx.exchange/", "auth": "apiKey"},
|
|
205
|
+
{"name": "Ethplorer", "description": "Ethereum tokens data", "category": "Cryptocurrency", "link": "https://github.com/EverexIO/Ethplorer/wiki/Ethplorer-API", "auth": "apiKey"},
|
|
206
|
+
{"name": "FTX API", "description": "Crypto trading", "category": "Cryptocurrency", "link": "https://docs.ftx.com/", "auth": "apiKey"},
|
|
207
|
+
{"name": "Gate.io API", "description": "Crypto trading", "category": "Cryptocurrency", "link": "https://www.gate.io/api2", "auth": "apiKey"},
|
|
208
|
+
{"name": "Gemini API", "description": "Crypto exchange", "category": "Cryptocurrency", "link": "https://docs.gemini.com/rest-api/", "auth": "None"},
|
|
209
|
+
{"name": "Huobi API", "description": "Crypto exchange", "category": "Cryptocurrency", "link": "https://huobiapi.github.io/docs/spot/v1/en/", "auth": "apiKey"},
|
|
210
|
+
{"name": "icy.tools NFT", "description": "NFT data API", "category": "Cryptocurrency", "link": "https://developers.icy.tools/", "auth": "apiKey"},
|
|
211
|
+
{"name": "INFURA Ethereum", "description": "Ethereum mainnet access", "category": "Cryptocurrency", "link": "https://infura.io/product/ethereum", "auth": "apiKey"},
|
|
212
|
+
{"name": "Kraken API", "description": "Crypto exchange", "category": "Cryptocurrency", "link": "https://docs.kraken.com/rest/", "auth": "apiKey"},
|
|
213
|
+
{"name": "KuCoin API", "description": "Crypto trading", "category": "Cryptocurrency", "link": "https://docs.kucoin.com/", "auth": "apiKey"},
|
|
214
|
+
{"name": "Mempool API", "description": "Bitcoin API focusing on fees", "category": "Cryptocurrency", "link": "https://mempool.space/api", "auth": "None"},
|
|
215
|
+
{"name": "Messari API", "description": "Crypto asset data", "category": "Cryptocurrency", "link": "https://messari.io/api", "auth": "None"},
|
|
216
|
+
{"name": "Poloniex API", "description": "US crypto exchange", "category": "Cryptocurrency", "link": "https://docs.poloniex.com", "auth": "apiKey"},
|
|
217
|
+
{"name": "Solana JSON RPC", "description": "Solana blockchain API", "category": "Cryptocurrency", "link": "https://docs.solana.com/developing/clients/jsonrpc-api", "auth": "None"},
|
|
218
|
+
{"name": "Technical Analysis API", "description": "Crypto technical analysis", "category": "Cryptocurrency", "link": "https://technical-analysis-api.com", "auth": "apiKey"},
|
|
219
|
+
|
|
220
|
+
# === CURRENCY EXCHANGE ===
|
|
221
|
+
{"name": "1Forge Forex", "description": "Forex market data", "category": "Finance", "link": "https://1forge.com/forex-data-api/api-documentation", "auth": "apiKey"},
|
|
222
|
+
{"name": "Currency-api", "description": "Free currency exchange rates", "category": "Finance", "link": "https://github.com/fawazahmed0/currency-api#readme", "auth": "None"},
|
|
223
|
+
{"name": "CurrencyFreaks", "description": "Currency exchange rates", "category": "Finance", "link": "https://currencyfreaks.com/", "auth": "apiKey"},
|
|
224
|
+
{"name": "Currencylayer", "description": "Exchange rates and conversion", "category": "Finance", "link": "https://currencylayer.com/documentation", "auth": "apiKey"},
|
|
225
|
+
{"name": "CurrencyScoop", "description": "Real-time currency rates", "category": "Finance", "link": "https://currencyscoop.com/api-documentation", "auth": "apiKey"},
|
|
226
|
+
{"name": "ECB Exchange Rates", "description": "European Central Bank rates", "category": "Finance", "link": "https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml", "auth": "None"},
|
|
227
|
+
{"name": "ExchangeRate-API", "description": "Free currency conversion", "category": "Finance", "link": "https://www.exchangerate-api.com", "auth": "apiKey"},
|
|
228
|
+
{"name": "Exchangerate.host", "description": "Foreign exchange rates", "category": "Finance", "link": "https://exchangerate.host", "auth": "None"},
|
|
229
|
+
{"name": "Frankfurter", "description": "Exchange rates and conversion", "category": "Finance", "link": "https://www.frankfurter.app/docs", "auth": "None"},
|
|
230
|
+
{"name": "FreeForexAPI", "description": "Real-time forex rates", "category": "Finance", "link": "https://freeforexapi.com/Home/Api", "auth": "None"},
|
|
231
|
+
{"name": "VATComply", "description": "Exchange rates and VAT", "category": "Finance", "link": "https://www.vatcomply.com/documentation", "auth": "None"},
|
|
232
|
+
|
|
233
|
+
# === DATA VALIDATION ===
|
|
234
|
+
{"name": "Lob Address Verification", "description": "US address verification", "category": "Validation", "link": "https://lob.com/", "auth": "apiKey"},
|
|
235
|
+
{"name": "Postman Echo", "description": "Test API server", "category": "Development", "link": "https://www.postman-echo.com", "auth": "None"},
|
|
236
|
+
{"name": "PurgoMalum", "description": "Profanity filter", "category": "Content", "link": "http://www.purgomalum.com", "auth": "None"},
|
|
237
|
+
{"name": "US Autocomplete", "description": "Address autocomplete", "category": "Geocoding", "link": "https://www.smarty.com/docs/cloud/us-autocomplete-pro-api", "auth": "apiKey"},
|
|
238
|
+
{"name": "US Street Address", "description": "Validate US addresses", "category": "Geocoding", "link": "https://www.smarty.com/docs/cloud/us-street-api", "auth": "apiKey"},
|
|
239
|
+
{"name": "vatlayer", "description": "VAT number validation", "category": "Finance", "link": "https://vatlayer.com/documentation", "auth": "apiKey"},
|
|
240
|
+
|
|
241
|
+
# === DEVELOPMENT ===
|
|
242
|
+
{"name": "24 Pull Requests", "description": "Open source collaboration", "category": "Development", "link": "https://24pullrequests.com/api", "auth": "None"},
|
|
243
|
+
{"name": "Abstract Screenshot", "description": "Website screenshots", "category": "Development", "link": "https://www.abstractapi.com/website-screenshot-api", "auth": "apiKey"},
|
|
244
|
+
{"name": "Agify.io", "description": "Estimate age from name", "category": "AI/ML", "link": "https://agify.io", "auth": "None"},
|
|
245
|
+
{"name": "ApiFlash", "description": "Chrome screenshot API", "category": "Development", "link": "https://apiflash.com/", "auth": "apiKey"},
|
|
246
|
+
{"name": "APIs.guru", "description": "Wikipedia for Web APIs", "category": "Development", "link": "https://apis.guru/api-doc/", "auth": "None"},
|
|
247
|
+
{"name": "Azure DevOps", "description": "Azure DevOps REST API", "category": "Development", "link": "https://docs.microsoft.com/en-us/rest/api/azure/devops", "auth": "apiKey"},
|
|
248
|
+
{"name": "Bitbucket API", "description": "Source control", "category": "Development", "link": "https://developer.atlassian.com/bitbucket/api/2/reference/", "auth": "OAuth"},
|
|
249
|
+
{"name": "Bored API", "description": "Find random activities", "category": "Entertainment", "link": "https://www.boredapi.com/", "auth": "None"},
|
|
250
|
+
{"name": "Brainshop.ai", "description": "Free AI Brain", "category": "AI/ML", "link": "https://brainshop.ai/", "auth": "apiKey"},
|
|
251
|
+
{"name": "CDNJS", "description": "Library info on CDNJS", "category": "Development", "link": "https://api.cdnjs.com/libraries/jquery", "auth": "None"},
|
|
252
|
+
{"name": "Cloudflare Trace", "description": "IP and browser info", "category": "Development", "link": "https://github.com/fawazahmed0/cloudflare-trace-api", "auth": "None"},
|
|
253
|
+
{"name": "CountAPI", "description": "Free counting service", "category": "Development", "link": "https://countapi.xyz", "auth": "None"},
|
|
254
|
+
{"name": "Docker Hub API", "description": "Docker Hub access", "category": "Development", "link": "https://docs.docker.com/docker-hub/api/latest/", "auth": "apiKey"},
|
|
255
|
+
{"name": "Genderize.io", "description": "Estimate gender from name", "category": "AI/ML", "link": "https://genderize.io", "auth": "None"},
|
|
256
|
+
{"name": "GitHub API", "description": "GitHub repositories and code", "category": "Development", "link": "https://docs.github.com/en/free-pro-team@latest/rest", "auth": "OAuth"},
|
|
257
|
+
{"name": "GitLab API", "description": "GitLab automation", "category": "Development", "link": "https://docs.gitlab.com/ee/api/", "auth": "OAuth"},
|
|
258
|
+
{"name": "Google Docs API", "description": "Google Docs access", "category": "Documents", "link": "https://developers.google.com/docs/api/reference/rest", "auth": "OAuth"},
|
|
259
|
+
{"name": "Google Firebase", "description": "Mobile development platform", "category": "Development", "link": "https://firebase.google.com/docs", "auth": "apiKey"},
|
|
260
|
+
{"name": "Google Fonts", "description": "Fonts metadata", "category": "Design", "link": "https://developers.google.com/fonts/docs/developer_api", "auth": "apiKey"},
|
|
261
|
+
{"name": "Google Sheets API", "description": "Spreadsheet access", "category": "Documents", "link": "https://developers.google.com/sheets/api/reference/rest", "auth": "OAuth"},
|
|
262
|
+
{"name": "Hasura", "description": "GraphQL and REST API engine", "category": "Development", "link": "https://hasura.io/opensource/", "auth": "apiKey"},
|
|
263
|
+
{"name": "Heroku API", "description": "Heroku platform API", "category": "Development", "link": "https://devcenter.heroku.com/articles/platform-api-reference/", "auth": "OAuth"},
|
|
264
|
+
{"name": "Host.io", "description": "Domain data API", "category": "Development", "link": "https://host.io", "auth": "apiKey"},
|
|
265
|
+
{"name": "Httpbin", "description": "HTTP request & response service", "category": "Development", "link": "https://httpbin.org/", "auth": "None"},
|
|
266
|
+
{"name": "Hunter Email", "description": "Email finder and verifier", "category": "Business", "link": "https://hunter.io/api", "auth": "apiKey"},
|
|
267
|
+
{"name": "IBM Text to Speech", "description": "Convert text to speech", "category": "AI/ML", "link": "https://cloud.ibm.com/docs/text-to-speech/getting-started.html", "auth": "apiKey"},
|
|
268
|
+
{"name": "Icanhazepoch", "description": "Get Epoch time", "category": "Development", "link": "https://icanhazepoch.com", "auth": "None"},
|
|
269
|
+
{"name": "Icanhazip", "description": "IP Address API", "category": "Development", "link": "https://major.io/icanhazip-com-faq/", "auth": "None"},
|
|
270
|
+
{"name": "Image-Charts", "description": "Chart image generation", "category": "Development", "link": "https://documentation.image-charts.com/", "auth": "None"},
|
|
271
|
+
{"name": "IP2WHOIS", "description": "WHOIS domain lookup", "category": "Development", "link": "https://www.ip2whois.com/", "auth": "apiKey"},
|
|
272
|
+
{"name": "IPify", "description": "Simple IP Address API", "category": "Development", "link": "https://www.ipify.org/", "auth": "None"},
|
|
273
|
+
{"name": "IPinfo", "description": "IP Address info", "category": "Development", "link": "https://ipinfo.io/developers", "auth": "None"},
|
|
274
|
+
{"name": "jsDelivr", "description": "Package info and stats", "category": "Development", "link": "https://github.com/jsdelivr/data.jsdelivr.com", "auth": "None"},
|
|
275
|
+
{"name": "JSONbin.io", "description": "Free JSON storage", "category": "Development", "link": "https://jsonbin.io", "auth": "apiKey"},
|
|
276
|
+
{"name": "Kroki", "description": "Diagrams from text", "category": "Development", "link": "https://kroki.io", "auth": "None"},
|
|
277
|
+
{"name": "MAC address vendor", "description": "MAC address lookup", "category": "Development", "link": "https://macaddress.io/api", "auth": "apiKey"},
|
|
278
|
+
{"name": "Mocky", "description": "Mock JSON endpoints", "category": "Development", "link": "https://designer.mocky.io/", "auth": "None"},
|
|
279
|
+
{"name": "MY IP", "description": "IP address info", "category": "Development", "link": "https://www.myip.com/api-docs/", "auth": "None"},
|
|
280
|
+
{"name": "Nationalize.io", "description": "Estimate nationality from name", "category": "AI/ML", "link": "https://nationalize.io", "auth": "None"},
|
|
281
|
+
{"name": "Netlify API", "description": "Netlify hosting API", "category": "Development", "link": "https://docs.netlify.com/api/get-started/", "auth": "OAuth"},
|
|
282
|
+
{"name": "NetworkCalc", "description": "Network calculators", "category": "Development", "link": "https://networkcalc.com/api/docs", "auth": "None"},
|
|
283
|
+
{"name": "npm Registry", "description": "npm package info", "category": "Development", "link": "https://github.com/npm/registry/blob/master/docs/REGISTRY-API.md", "auth": "None"},
|
|
284
|
+
{"name": "OneSignal", "description": "Push notifications", "category": "Communication", "link": "https://documentation.onesignal.com/docs/onesignal-api", "auth": "apiKey"},
|
|
285
|
+
{"name": "Open Page Rank", "description": "Page Rank API", "category": "Development", "link": "https://www.domcop.com/openpagerank/", "auth": "apiKey"},
|
|
286
|
+
{"name": "Postman API", "description": "Postman access", "category": "Development", "link": "https://www.postman.com/postman/workspace/postman-public-workspace/documentation/12959542-c8142d51-e97c-46b6-bd77-52bb66712c9a", "auth": "apiKey"},
|
|
287
|
+
{"name": "QR Code API", "description": "Generate QR codes", "category": "Development", "link": "https://www.qrtag.net/api/", "auth": "None"},
|
|
288
|
+
{"name": "QuickChart", "description": "Chart and graph images", "category": "Development", "link": "https://quickchart.io/", "auth": "None"},
|
|
289
|
+
{"name": "ReqRes", "description": "Hosted REST API for testing", "category": "Development", "link": "https://reqres.in/", "auth": "None"},
|
|
290
|
+
{"name": "SavePage.io", "description": "Website screenshot API", "category": "Development", "link": "https://www.savepage.io", "auth": "apiKey"},
|
|
291
|
+
{"name": "ScrapeNinja", "description": "Web scraping API", "category": "Development", "link": "https://scrapeninja.net", "auth": "apiKey"},
|
|
292
|
+
{"name": "ScraperApi", "description": "Web scraper API", "category": "Development", "link": "https://www.scraperapi.com", "auth": "apiKey"},
|
|
293
|
+
{"name": "scrapestack", "description": "Web scraping API", "category": "Development", "link": "https://scrapestack.com/", "auth": "apiKey"},
|
|
294
|
+
{"name": "ScrapingAnt", "description": "Headless Chrome scraping", "category": "Development", "link": "https://scrapingant.com", "auth": "apiKey"},
|
|
295
|
+
{"name": "ScreenshotAPI.net", "description": "Website screenshots", "category": "Development", "link": "https://screenshotapi.net/", "auth": "apiKey"},
|
|
296
|
+
{"name": "serpstack", "description": "Google search results API", "category": "Development", "link": "https://serpstack.com/", "auth": "apiKey"},
|
|
297
|
+
{"name": "StackExchange API", "description": "Q&A forum data", "category": "Development", "link": "https://api.stackexchange.com/", "auth": "OAuth"},
|
|
298
|
+
{"name": "Statically", "description": "Free CDN for developers", "category": "Development", "link": "https://statically.io/", "auth": "None"},
|
|
299
|
+
{"name": "WebScraping.AI", "description": "Web scraping API", "category": "Development", "link": "https://webscraping.ai/", "auth": "apiKey"},
|
|
300
|
+
{"name": "ZenRows", "description": "Web scraping with anti-bot bypass", "category": "Development", "link": "https://www.zenrows.com/", "auth": "apiKey"},
|
|
301
|
+
|
|
302
|
+
# === DICTIONARIES ===
|
|
303
|
+
{"name": "Chinese Character Web", "description": "Chinese character definitions", "category": "Content", "link": "http://ccdb.hemiola.com/", "auth": "None"},
|
|
304
|
+
{"name": "Collins Dictionary", "description": "Bilingual dictionary data", "category": "Content", "link": "https://api.collinsdictionary.com/api/v1/documentation/html/", "auth": "apiKey"},
|
|
305
|
+
{"name": "Free Dictionary API", "description": "Word definitions", "category": "Content", "link": "https://dictionaryapi.dev/", "auth": "None"},
|
|
306
|
+
{"name": "Lingua Robot", "description": "Word definitions and more", "category": "Content", "link": "https://www.linguarobot.io", "auth": "apiKey"},
|
|
307
|
+
{"name": "Merriam-Webster", "description": "Dictionary and thesaurus", "category": "Content", "link": "https://dictionaryapi.com/", "auth": "apiKey"},
|
|
308
|
+
{"name": "OwlBot", "description": "Definitions with examples", "category": "Content", "link": "https://owlbot.info/", "auth": "apiKey"},
|
|
309
|
+
{"name": "Oxford Dictionary", "description": "Dictionary data", "category": "Content", "link": "https://developer.oxforddictionaries.com/", "auth": "apiKey"},
|
|
310
|
+
{"name": "Synonyms API", "description": "Synonyms and antonyms", "category": "Content", "link": "https://www.synonyms.com/synonyms_api.php", "auth": "apiKey"},
|
|
311
|
+
{"name": "Wiktionary API", "description": "Multilingual dictionary", "category": "Content", "link": "https://en.wiktionary.org/w/api.php", "auth": "None"},
|
|
312
|
+
{"name": "Wordnik", "description": "Dictionary data", "category": "Content", "link": "https://developer.wordnik.com", "auth": "apiKey"},
|
|
313
|
+
{"name": "Words API", "description": "Definitions for 150k+ words", "category": "Content", "link": "https://www.wordsapi.com/docs/", "auth": "apiKey"},
|
|
314
|
+
|
|
315
|
+
# === DOCUMENTS & PRODUCTIVITY ===
|
|
316
|
+
{"name": "Airtable API", "description": "Integrate with Airtable", "category": "Documents", "link": "https://airtable.com/api", "auth": "apiKey"},
|
|
317
|
+
{"name": "Api2Convert", "description": "Online file conversion", "category": "Documents", "link": "https://www.api2convert.com/", "auth": "apiKey"},
|
|
318
|
+
{"name": "Asana API", "description": "Project management", "category": "Documents", "link": "https://developers.asana.com/docs", "auth": "apiKey"},
|
|
319
|
+
{"name": "ClickUp API", "description": "Project management", "category": "Documents", "link": "https://clickup.com/api", "auth": "OAuth"},
|
|
320
|
+
{"name": "Clockify API", "description": "Time tracking", "category": "Documents", "link": "https://clockify.me/developers-api", "auth": "apiKey"},
|
|
321
|
+
{"name": "CloudConvert", "description": "File converter", "category": "Documents", "link": "https://cloudconvert.com/api/v2", "auth": "apiKey"},
|
|
322
|
+
{"name": "Code::Stats", "description": "Programmer time tracking", "category": "Documents", "link": "https://codestats.net/api-docs", "auth": "apiKey"},
|
|
323
|
+
{"name": "CraftMyPDF", "description": "PDF generation from templates", "category": "Documents", "link": "https://craftmypdf.com", "auth": "apiKey"},
|
|
324
|
+
{"name": "Flowdash", "description": "Business workflow automation", "category": "Documents", "link": "https://docs.flowdash.com/docs/api-introduction", "auth": "apiKey"},
|
|
325
|
+
{"name": "Html2PDF", "description": "HTML to PDF conversion", "category": "Documents", "link": "https://html2pdf.app/", "auth": "apiKey"},
|
|
326
|
+
{"name": "iLovePDF", "description": "PDF tools API", "category": "Documents", "link": "https://developer.ilovepdf.com/", "auth": "apiKey"},
|
|
327
|
+
{"name": "JIRA API", "description": "Issue tracking", "category": "Documents", "link": "https://developer.atlassian.com/server/jira/platform/rest-apis/", "auth": "OAuth"},
|
|
328
|
+
{"name": "Mattermost API", "description": "Developer collaboration", "category": "Communication", "link": "https://api.mattermost.com/", "auth": "OAuth"},
|
|
329
|
+
{"name": "Mercury Web Parser", "description": "Web content parser", "category": "Development", "link": "https://mercury.postlight.com/web-parser/", "auth": "apiKey"},
|
|
330
|
+
{"name": "Monday API", "description": "Work management", "category": "Documents", "link": "https://api.developer.monday.com/docs", "auth": "apiKey"},
|
|
331
|
+
{"name": "Notion API", "description": "Notion integration", "category": "Documents", "link": "https://developers.notion.com/docs/getting-started", "auth": "OAuth"},
|
|
332
|
+
{"name": "PandaDoc", "description": "DocGen and eSignatures", "category": "Documents", "link": "https://developers.pandadoc.com", "auth": "apiKey"},
|
|
333
|
+
{"name": "Pocket API", "description": "Bookmarking service", "category": "Documents", "link": "https://getpocket.com/developer/", "auth": "OAuth"},
|
|
334
|
+
{"name": "Todoist API", "description": "Todo lists", "category": "Documents", "link": "https://developer.todoist.com", "auth": "OAuth"},
|
|
335
|
+
{"name": "WakaTime", "description": "Programmer time tracking", "category": "Documents", "link": "https://wakatime.com/developers", "auth": "None"},
|
|
336
|
+
|
|
337
|
+
# === EMAIL ===
|
|
338
|
+
{"name": "Abstract Email Validation", "description": "Email address validation", "category": "Communication", "link": "https://www.abstractapi.com/email-verification-validation-api", "auth": "apiKey"},
|
|
339
|
+
{"name": "Cloudmersive Email Validate", "description": "Email and phone validation", "category": "Communication", "link": "https://cloudmersive.com/validate-api", "auth": "apiKey"},
|
|
340
|
+
{"name": "Disify", "description": "Disposable email detection", "category": "Communication", "link": "https://www.disify.com/", "auth": "None"},
|
|
341
|
+
{"name": "DropMail", "description": "Ephemeral email inbox", "category": "Communication", "link": "https://dropmail.me/api/#live-demo", "auth": "None"},
|
|
342
|
+
{"name": "EVA Email Validation", "description": "Validate email addresses", "category": "Communication", "link": "https://eva.pingutil.com/", "auth": "None"},
|
|
343
|
+
{"name": "Guerrilla Mail", "description": "Disposable email addresses", "category": "Communication", "link": "https://www.guerrillamail.com/GuerrillaMailAPI.html", "auth": "None"},
|
|
344
|
+
{"name": "ImprovMX", "description": "Email forwarding service", "category": "Communication", "link": "https://improvmx.com/api", "auth": "apiKey"},
|
|
345
|
+
{"name": "Kickbox", "description": "Email verification", "category": "Communication", "link": "https://open.kickbox.com/", "auth": "None"},
|
|
346
|
+
{"name": "mail.gw", "description": "10 Minute Mail API", "category": "Communication", "link": "https://docs.mail.gw", "auth": "None"},
|
|
347
|
+
{"name": "mail.tm", "description": "Temporary email service", "category": "Communication", "link": "https://docs.mail.tm", "auth": "None"},
|
|
348
|
+
{"name": "MailboxValidator", "description": "Email validation API", "category": "Communication", "link": "https://www.mailboxvalidator.com/api-email-free", "auth": "apiKey"},
|
|
349
|
+
{"name": "MailCheck.ai", "description": "Block temp email signups", "category": "Communication", "link": "https://www.mailcheck.ai/#documentation", "auth": "None"},
|
|
350
|
+
{"name": "Mailtrap", "description": "Email testing service", "category": "Communication", "link": "https://mailtrap.docs.apiary.io/#", "auth": "apiKey"},
|
|
351
|
+
{"name": "SendGrid", "description": "Email sending API", "category": "Communication", "link": "https://docs.sendgrid.com/api-reference/", "auth": "apiKey"},
|
|
352
|
+
{"name": "Sendinblue", "description": "Marketing email API", "category": "Communication", "link": "https://developers.sendinblue.com/docs", "auth": "apiKey"},
|
|
353
|
+
{"name": "Verifier Email", "description": "Email verification", "category": "Communication", "link": "https://verifier.meetchopra.com/docs#/", "auth": "apiKey"},
|
|
354
|
+
|
|
355
|
+
# === ENTERTAINMENT ===
|
|
356
|
+
{"name": "chucknorris.io", "description": "Chuck Norris jokes", "category": "Entertainment", "link": "https://api.chucknorris.io", "auth": "None"},
|
|
357
|
+
{"name": "Corporate Buzz Words", "description": "Corporate BS generator", "category": "Entertainment", "link": "https://github.com/sameerkumar18/corporate-bs-generator-api", "auth": "None"},
|
|
358
|
+
{"name": "Excuser API", "description": "Random excuses generator", "category": "Entertainment", "link": "https://excuser.herokuapp.com/", "auth": "None"},
|
|
359
|
+
{"name": "Fun Fact API", "description": "Random fun facts", "category": "Entertainment", "link": "https://api.aakhilv.me", "auth": "None"},
|
|
360
|
+
{"name": "Imgflip", "description": "Popular memes array", "category": "Entertainment", "link": "https://imgflip.com/api", "auth": "None"},
|
|
361
|
+
{"name": "Meme Maker API", "description": "Create memes", "category": "Entertainment", "link": "https://mememaker.github.io/API/", "auth": "None"},
|
|
362
|
+
{"name": "Random Useless Facts", "description": "Useless but true facts", "category": "Entertainment", "link": "https://uselessfacts.jsph.pl/", "auth": "None"},
|
|
363
|
+
{"name": "Techy API", "description": "Tech-savvy phrases", "category": "Entertainment", "link": "https://techy-api.vercel.app/", "auth": "None"},
|
|
364
|
+
{"name": "Yo Momma Jokes", "description": "Yo Momma jokes API", "category": "Entertainment", "link": "https://github.com/beanboi7/yomomma-apiv2", "auth": "None"},
|
|
365
|
+
|
|
366
|
+
# === ENVIRONMENT ===
|
|
367
|
+
{"name": "BreezoMeter Pollen", "description": "Pollen forecast data", "category": "Environment", "link": "https://docs.breezometer.com/api-documentation/pollen-api/v2/", "auth": "apiKey"},
|
|
368
|
+
{"name": "Carbon Interface", "description": "CO2 emissions calculator", "category": "Environment", "link": "https://docs.carboninterface.com/", "auth": "apiKey"},
|
|
369
|
+
{"name": "Climatiq", "description": "Environmental footprint API", "category": "Environment", "link": "https://docs.climatiq.io", "auth": "apiKey"},
|
|
370
|
+
{"name": "Cloverly", "description": "Carbon offset API", "category": "Environment", "link": "https://www.cloverly.com/carbon-offset-documentation", "auth": "apiKey"},
|
|
371
|
+
{"name": "CO2 Offset API", "description": "Carbon footprint calculation", "category": "Environment", "link": "https://co2offset.io/api.html", "auth": "None"},
|
|
372
|
+
{"name": "IQAir", "description": "Air quality and weather", "category": "Environment", "link": "https://www.iqair.com/air-pollution-data-api", "auth": "apiKey"},
|
|
373
|
+
{"name": "OpenAQ", "description": "Open air quality data", "category": "Environment", "link": "https://docs.openaq.org/", "auth": "apiKey"},
|
|
374
|
+
{"name": "PVWatts", "description": "Solar energy production", "category": "Environment", "link": "https://developer.nrel.gov/docs/solar/pvwatts/v6/", "auth": "apiKey"},
|
|
375
|
+
{"name": "UK Carbon Intensity", "description": "Carbon intensity for UK", "category": "Environment", "link": "https://carbon-intensity.github.io/api-definitions/#carbon-intensity-api-v1-0-0", "auth": "None"},
|
|
376
|
+
{"name": "Website Carbon", "description": "Website carbon footprint", "category": "Environment", "link": "https://api.websitecarbon.com/", "auth": "None"},
|
|
377
|
+
|
|
378
|
+
# === EVENTS ===
|
|
379
|
+
{"name": "Eventbrite API", "description": "Find events", "category": "Events", "link": "https://www.eventbrite.com/platform/api/", "auth": "OAuth"},
|
|
380
|
+
{"name": "SeatGeek", "description": "Search events and venues", "category": "Events", "link": "https://platform.seatgeek.com/", "auth": "apiKey"},
|
|
381
|
+
{"name": "Ticketmaster", "description": "Search events and attractions", "category": "Events", "link": "http://developer.ticketmaster.com/products-and-docs/apis/getting-started/", "auth": "apiKey"},
|
|
382
|
+
|
|
383
|
+
# === FINANCE ===
|
|
384
|
+
{"name": "Abstract VAT Validation", "description": "Validate VAT numbers", "category": "Finance", "link": "https://www.abstractapi.com/vat-validation-rates-api", "auth": "apiKey"},
|
|
385
|
+
{"name": "Aletheia Finance", "description": "Insider trading data", "category": "Finance", "link": "https://aletheiaapi.com/", "auth": "apiKey"},
|
|
386
|
+
{"name": "Alpaca Market Data", "description": "US equity market data", "category": "Finance", "link": "https://alpaca.markets/docs/api-documentation/api-v2/market-data/alpaca-data-api-v2/", "auth": "apiKey"},
|
|
387
|
+
{"name": "Alpha Vantage", "description": "Stock data API", "category": "Finance", "link": "https://www.alphavantage.co/", "auth": "apiKey"},
|
|
388
|
+
{"name": "Banco do Brasil", "description": "Bank transaction APIs", "category": "Finance", "link": "https://developers.bb.com.br/home", "auth": "OAuth"},
|
|
389
|
+
{"name": "Bank Data API", "description": "IBAN and SWIFT validation", "category": "Finance", "link": "https://apilayer.com/marketplace/bank_data-api", "auth": "apiKey"},
|
|
390
|
+
{"name": "Billplz", "description": "Payment platform", "category": "Finance", "link": "https://www.billplz.com/api", "auth": "apiKey"},
|
|
391
|
+
{"name": "Binlist", "description": "IIN/BIN database", "category": "Finance", "link": "https://binlist.net/", "auth": "None"},
|
|
392
|
+
{"name": "Citi API", "description": "Citigroup account data", "category": "Finance", "link": "https://sandbox.developerhub.citi.com/api-catalog-list", "auth": "apiKey"},
|
|
393
|
+
{"name": "Econdb", "description": "Macroeconomic data", "category": "Finance", "link": "https://www.econdb.com/api/", "auth": "None"},
|
|
394
|
+
{"name": "Fed Treasury", "description": "US Treasury data", "category": "Finance", "link": "https://fiscaldata.treasury.gov/api-documentation/", "auth": "None"},
|
|
395
|
+
{"name": "Finage", "description": "Stock and crypto data", "category": "Finance", "link": "https://finage.co.uk", "auth": "apiKey"},
|
|
396
|
+
{"name": "Financial Modeling Prep", "description": "Stock data", "category": "Finance", "link": "https://site.financialmodelingprep.com/developer/docs", "auth": "apiKey"},
|
|
397
|
+
{"name": "Finnhub", "description": "Stock and crypto data", "category": "Finance", "link": "https://finnhub.io/docs/api", "auth": "apiKey"},
|
|
398
|
+
{"name": "FRED", "description": "Economic data from Federal Reserve", "category": "Finance", "link": "https://fred.stlouisfed.org/docs/api/fred/", "auth": "apiKey"},
|
|
399
|
+
{"name": "Hotstoks", "description": "Stock market data via SQL", "category": "Finance", "link": "https://hotstoks.com?utm_source=public-apis", "auth": "apiKey"},
|
|
400
|
+
{"name": "IEX Cloud", "description": "Stock and market data", "category": "Finance", "link": "https://iexcloud.io/docs/api/", "auth": "apiKey"},
|
|
401
|
+
{"name": "IG", "description": "Spreadbetting and CFD data", "category": "Finance", "link": "https://labs.ig.com/gettingstarted", "auth": "apiKey"},
|
|
402
|
+
{"name": "Indian Mutual Fund", "description": "India mutual fund data", "category": "Finance", "link": "https://www.mfapi.in/", "auth": "None"},
|
|
403
|
+
{"name": "Intrinio", "description": "Financial data feeds", "category": "Finance", "link": "https://intrinio.com/", "auth": "apiKey"},
|
|
404
|
+
{"name": "Klarna API", "description": "Payment and shopping", "category": "Finance", "link": "https://docs.klarna.com/klarna-payments/api/payments-api/", "auth": "apiKey"},
|
|
405
|
+
{"name": "MercadoPago", "description": "Payment integration", "category": "Finance", "link": "https://www.mercadopago.com.br/developers/es/reference", "auth": "apiKey"},
|
|
406
|
+
{"name": "Mono", "description": "African bank account API", "category": "Finance", "link": "https://mono.co/", "auth": "apiKey"},
|
|
407
|
+
{"name": "Moov", "description": "Money transfer API", "category": "Finance", "link": "https://docs.moov.io/api/", "auth": "apiKey"},
|
|
408
|
+
{"name": "Nordigen", "description": "Bank account access", "category": "Finance", "link": "https://nordigen.com/en/account_information_documenation/integration/quickstart_guide/", "auth": "apiKey"},
|
|
409
|
+
{"name": "OpenFIGI", "description": "Financial instrument IDs", "category": "Finance", "link": "https://www.openfigi.com/api", "auth": "apiKey"},
|
|
410
|
+
{"name": "Plaid", "description": "Bank account connection", "category": "Finance", "link": "https://www.plaid.com/docs", "auth": "apiKey"},
|
|
411
|
+
{"name": "Polygon", "description": "Historical stock data", "category": "Finance", "link": "https://polygon.io/", "auth": "apiKey"},
|
|
412
|
+
{"name": "Portfolio Optimizer", "description": "Portfolio analysis", "category": "Finance", "link": "https://portfoliooptimizer.io/", "auth": "None"},
|
|
413
|
+
{"name": "Razorpay IFSC", "description": "Indian bank branch codes", "category": "Finance", "link": "https://razorpay.com/docs/", "auth": "None"},
|
|
414
|
+
{"name": "SEC EDGAR Data", "description": "US company reports", "category": "Finance", "link": "https://www.sec.gov/edgar/sec-api-documentation", "auth": "None"},
|
|
415
|
+
{"name": "SmartAPI", "description": "Indian broking services", "category": "Finance", "link": "https://smartapi.angelbroking.com/", "auth": "apiKey"},
|
|
416
|
+
{"name": "StockData.org", "description": "Stock and news data", "category": "Finance", "link": "https://www.StockData.org", "auth": "apiKey"},
|
|
417
|
+
{"name": "Styvio", "description": "Stock data and sentiment", "category": "Finance", "link": "https://www.Styvio.com", "auth": "apiKey"},
|
|
418
|
+
{"name": "Tradier", "description": "US equity options data", "category": "Finance", "link": "https://developer.tradier.com", "auth": "OAuth"},
|
|
419
|
+
{"name": "Twelve Data", "description": "Stock market data", "category": "Finance", "link": "https://twelvedata.com/", "auth": "apiKey"},
|
|
420
|
+
{"name": "WallstreetBets", "description": "Reddit stock sentiment", "category": "Finance", "link": "https://dashboard.nbshare.io/apps/reddit/api/", "auth": "None"},
|
|
421
|
+
{"name": "Yahoo Finance API", "description": "Stock and crypto data", "category": "Finance", "link": "https://www.yahoofinanceapi.com/", "auth": "apiKey"},
|
|
422
|
+
{"name": "YNAB API", "description": "Budgeting and planning", "category": "Finance", "link": "https://api.youneedabudget.com/", "auth": "OAuth"},
|
|
423
|
+
{"name": "Zoho Books", "description": "Online accounting", "category": "Finance", "link": "https://www.zoho.com/books/api/v3/", "auth": "OAuth"},
|
|
424
|
+
|
|
425
|
+
# === FOOD & DRINK ===
|
|
426
|
+
{"name": "BaconMockup", "description": "Bacon placeholder images", "category": "Food", "link": "https://baconmockup.com/", "auth": "None"},
|
|
427
|
+
{"name": "Chomp", "description": "Grocery product data", "category": "Food", "link": "https://chompthis.com/api/", "auth": "apiKey"},
|
|
428
|
+
{"name": "Coffee API", "description": "Random coffee pictures", "category": "Food", "link": "https://coffee.alexflipnote.dev/", "auth": "None"},
|
|
429
|
+
{"name": "Edamam Nutrition", "description": "Nutrition analysis", "category": "Food", "link": "https://developer.edamam.com/edamam-docs-nutrition-api", "auth": "apiKey"},
|
|
430
|
+
{"name": "Edamam Recipes", "description": "Recipe search", "category": "Food", "link": "https://developer.edamam.com/edamam-docs-recipe-api", "auth": "apiKey"},
|
|
431
|
+
{"name": "Foodish", "description": "Random food pictures", "category": "Food", "link": "https://github.com/surhud004/Foodish#readme", "auth": "None"},
|
|
432
|
+
{"name": "Fruityvice", "description": "Fruit data", "category": "Food", "link": "https://www.fruityvice.com", "auth": "None"},
|
|
433
|
+
{"name": "Kroger", "description": "Supermarket data", "category": "Food", "link": "https://developer.kroger.com/reference", "auth": "apiKey"},
|
|
434
|
+
{"name": "Open Brewery DB", "description": "Breweries database", "category": "Food", "link": "https://www.openbrewerydb.org", "auth": "None"},
|
|
435
|
+
{"name": "Open Food Facts", "description": "Food products database", "category": "Food", "link": "https://world.openfoodfacts.org/data", "auth": "None"},
|
|
436
|
+
{"name": "PunkAPI", "description": "Brewdog beer recipes", "category": "Food", "link": "https://punkapi.com/", "auth": "None"},
|
|
437
|
+
{"name": "Spoonacular", "description": "Food and recipes API", "category": "Food", "link": "https://spoonacular.com/food-api", "auth": "apiKey"},
|
|
438
|
+
{"name": "Tasty", "description": "Recipe data", "category": "Food", "link": "https://rapidapi.com/apidojo/api/tasty/", "auth": "apiKey"},
|
|
439
|
+
{"name": "TheCocktailDB", "description": "Cocktail recipes", "category": "Food", "link": "https://www.thecocktaildb.com/api.php", "auth": "apiKey"},
|
|
440
|
+
{"name": "TheMealDB", "description": "Meal recipes", "category": "Food", "link": "https://www.themealdb.com/api.php", "auth": "apiKey"},
|
|
441
|
+
{"name": "Untappd", "description": "Social beer sharing", "category": "Food", "link": "https://untappd.com/api/docs", "auth": "OAuth"},
|
|
442
|
+
{"name": "WhiskyHunter", "description": "Whisky auction data", "category": "Food", "link": "https://whiskyhunter.net/api/", "auth": "None"},
|
|
443
|
+
{"name": "Zestful", "description": "Recipe ingredient parser", "category": "Food", "link": "https://zestfuldata.com/", "auth": "apiKey"},
|
|
444
|
+
|
|
445
|
+
# === GAMES & COMICS ===
|
|
446
|
+
{"name": "Age of Empires II", "description": "AoE2 game data", "category": "Games", "link": "https://age-of-empires-2-api.herokuapp.com", "auth": "None"},
|
|
447
|
+
{"name": "AmiiboAPI", "description": "Nintendo Amiibo data", "category": "Games", "link": "https://amiiboapi.com/", "auth": "None"},
|
|
448
|
+
{"name": "Animal Crossing NH", "description": "ACNH game data", "category": "Games", "link": "http://acnhapi.com/", "auth": "None"},
|
|
449
|
+
{"name": "Battle.net", "description": "Blizzard game data", "category": "Games", "link": "https://develop.battle.net/documentation/guides/getting-started", "auth": "OAuth"},
|
|
450
|
+
{"name": "Board Game Geek", "description": "Board game database", "category": "Games", "link": "https://boardgamegeek.com/wiki/page/BGG_XML_API2", "auth": "None"},
|
|
451
|
+
{"name": "Brawl Stars", "description": "Brawl Stars game data", "category": "Games", "link": "https://developer.brawlstars.com", "auth": "apiKey"},
|
|
452
|
+
{"name": "CheapShark", "description": "Steam/PC game deals", "category": "Games", "link": "https://www.cheapshark.com/api", "auth": "None"},
|
|
453
|
+
{"name": "Chess.com", "description": "Chess.com data", "category": "Games", "link": "https://www.chess.com/news/view/published-data-api", "auth": "None"},
|
|
454
|
+
{"name": "Clash of Clans", "description": "CoC game data", "category": "Games", "link": "https://developer.clashofclans.com", "auth": "apiKey"},
|
|
455
|
+
{"name": "Clash Royale", "description": "CR game data", "category": "Games", "link": "https://developer.clashroyale.com", "auth": "apiKey"},
|
|
456
|
+
{"name": "Comic Vine", "description": "Comics database", "category": "Entertainment", "link": "https://comicvine.gamespot.com/api/documentation", "auth": "None"},
|
|
457
|
+
{"name": "Crafatar", "description": "Minecraft skins and faces", "category": "Games", "link": "https://crafatar.com", "auth": "None"},
|
|
458
|
+
{"name": "Deck of Cards", "description": "Virtual card deck", "category": "Games", "link": "http://deckofcardsapi.com/", "auth": "None"},
|
|
459
|
+
{"name": "Destiny The Game", "description": "Bungie API", "category": "Games", "link": "https://bungie-net.github.io/multi/index.html", "auth": "apiKey"},
|
|
460
|
+
{"name": "Digimon Information", "description": "Digimon data", "category": "Games", "link": "https://digimon-api.vercel.app/", "auth": "None"},
|
|
461
|
+
{"name": "Disney API", "description": "Disney characters data", "category": "Entertainment", "link": "https://disneyapi.dev", "auth": "None"},
|
|
462
|
+
{"name": "Dota 2 API", "description": "Dota 2 stats", "category": "Games", "link": "https://docs.opendota.com/", "auth": "apiKey"},
|
|
463
|
+
{"name": "D&D 5e API", "description": "D&D 5th edition data", "category": "Games", "link": "https://www.dnd5eapi.co/docs/", "auth": "None"},
|
|
464
|
+
{"name": "Eve Online API", "description": "Eve Online data", "category": "Games", "link": "https://esi.evetech.net/ui", "auth": "OAuth"},
|
|
465
|
+
{"name": "FFXIV Collect", "description": "FFXIV collectables data", "category": "Games", "link": "https://ffxivcollect.com/", "auth": "None"},
|
|
466
|
+
{"name": "Final Fantasy XIV", "description": "FFXIV game data", "category": "Games", "link": "https://xivapi.com/", "auth": "None"},
|
|
467
|
+
{"name": "Fortnite Stats", "description": "Fortnite player stats", "category": "Games", "link": "https://fortnitetracker.com/site-api", "auth": "apiKey"},
|
|
468
|
+
{"name": "FreeToGame", "description": "F2P games database", "category": "Games", "link": "https://www.freetogame.com/api-doc", "auth": "None"},
|
|
469
|
+
{"name": "GamerPower", "description": "Game giveaways tracker", "category": "Games", "link": "https://www.gamerpower.com/api-read", "auth": "None"},
|
|
470
|
+
{"name": "Genshin Impact API", "description": "Genshin Impact data", "category": "Games", "link": "https://genshin.dev", "auth": "None"},
|
|
471
|
+
{"name": "Giant Bomb", "description": "Video games database", "category": "Games", "link": "https://www.giantbomb.com/api/documentation", "auth": "apiKey"},
|
|
472
|
+
{"name": "Guild Wars 2 API", "description": "GW2 game data", "category": "Games", "link": "https://wiki.guildwars2.com/wiki/API:Main", "auth": "apiKey"},
|
|
473
|
+
{"name": "Halo API", "description": "Halo game data", "category": "Games", "link": "https://developer.haloapi.com/", "auth": "apiKey"},
|
|
474
|
+
{"name": "Hearthstone", "description": "Hearthstone cards data", "category": "Games", "link": "http://hearthstoneapi.com/", "auth": "apiKey"},
|
|
475
|
+
{"name": "Humor API", "description": "Jokes and memes", "category": "Entertainment", "link": "https://humorapi.com", "auth": "apiKey"},
|
|
476
|
+
{"name": "Hypixel", "description": "Hypixel player stats", "category": "Games", "link": "https://api.hypixel.net/", "auth": "apiKey"},
|
|
477
|
+
{"name": "Hyrule Compendium", "description": "Zelda BOTW data", "category": "Games", "link": "https://github.com/gadhagod/Hyrule-Compendium-API", "auth": "None"},
|
|
478
|
+
{"name": "IGDB", "description": "Video game database", "category": "Games", "link": "https://api-docs.igdb.com", "auth": "apiKey"},
|
|
479
|
+
{"name": "JokeAPI", "description": "Programming jokes", "category": "Entertainment", "link": "https://sv443.net/jokeapi/v2/", "auth": "None"},
|
|
480
|
+
{"name": "Jservice", "description": "Jeopardy questions", "category": "Entertainment", "link": "http://jservice.io", "auth": "None"},
|
|
481
|
+
{"name": "Lichess", "description": "Chess platform API", "category": "Games", "link": "https://lichess.org/api", "auth": "OAuth"},
|
|
482
|
+
{"name": "Magic The Gathering", "description": "MTG card data", "category": "Games", "link": "http://magicthegathering.io/", "auth": "None"},
|
|
483
|
+
{"name": "Marvel API", "description": "Marvel comics data", "category": "Entertainment", "link": "https://developer.marvel.com", "auth": "apiKey"},
|
|
484
|
+
{"name": "Minecraft Server Status", "description": "MC server info", "category": "Games", "link": "https://api.mcsrvstat.us", "auth": "None"},
|
|
485
|
+
{"name": "MMO Games", "description": "MMO database", "category": "Games", "link": "https://www.mmobomb.com/api", "auth": "None"},
|
|
486
|
+
{"name": "mod.io", "description": "Cross-platform mod API", "category": "Games", "link": "https://docs.mod.io", "auth": "apiKey"},
|
|
487
|
+
{"name": "Mojang API", "description": "Minecraft API", "category": "Games", "link": "https://wiki.vg/Mojang_API", "auth": "apiKey"},
|
|
488
|
+
{"name": "Monster Hunter World", "description": "MHW game data", "category": "Games", "link": "https://docs.mhw-db.com/", "auth": "None"},
|
|
489
|
+
{"name": "Open Trivia", "description": "Trivia questions", "category": "Entertainment", "link": "https://opentdb.com/api_config.php", "auth": "None"},
|
|
490
|
+
{"name": "PandaScore", "description": "E-sports data", "category": "Games", "link": "https://developers.pandascore.co/", "auth": "apiKey"},
|
|
491
|
+
{"name": "Path of Exile", "description": "PoE game data", "category": "Games", "link": "https://www.pathofexile.com/developer/docs", "auth": "OAuth"},
|
|
492
|
+
{"name": "Pokéapi", "description": "Pokémon data", "category": "Games", "link": "https://pokeapi.co", "auth": "None"},
|
|
493
|
+
{"name": "Pokémon TCG", "description": "Pokémon cards data", "category": "Games", "link": "https://pokemontcg.io", "auth": "None"},
|
|
494
|
+
{"name": "PUBG API", "description": "PUBG game data", "category": "Games", "link": "https://developer.pubg.com/", "auth": "apiKey"},
|
|
495
|
+
{"name": "quizapi.io", "description": "Quiz questions API", "category": "Entertainment", "link": "https://quizapi.io/", "auth": "apiKey"},
|
|
496
|
+
{"name": "RAWG Games", "description": "Video games database", "category": "Games", "link": "https://rawg.io/apidocs", "auth": "apiKey"},
|
|
497
|
+
{"name": "Rick and Morty", "description": "R&M show data", "category": "Entertainment", "link": "https://rickandmortyapi.com", "auth": "None"},
|
|
498
|
+
{"name": "Riot Games", "description": "League of Legends data", "category": "Games", "link": "https://developer.riotgames.com/", "auth": "apiKey"},
|
|
499
|
+
{"name": "Scryfall MTG", "description": "Magic cards database", "category": "Games", "link": "https://scryfall.com/docs/api", "auth": "None"},
|
|
500
|
+
{"name": "Steam API", "description": "Steam platform data", "category": "Games", "link": "https://steamapi.xpaw.me/", "auth": "apiKey"},
|
|
501
|
+
{"name": "SuperHeroes", "description": "Superheroes data", "category": "Entertainment", "link": "https://superheroapi.com", "auth": "apiKey"},
|
|
502
|
+
{"name": "TCGdex", "description": "Pokémon TCG data", "category": "Games", "link": "https://www.tcgdex.net/docs", "auth": "None"},
|
|
503
|
+
{"name": "TETR.IO", "description": "Tetris data", "category": "Games", "link": "https://tetr.io/about/api/", "auth": "None"},
|
|
504
|
+
{"name": "Universalis FFXIV", "description": "FFXIV market data", "category": "Games", "link": "https://universalis.app/docs/index.html", "auth": "None"},
|
|
505
|
+
{"name": "Valorant API", "description": "Valorant game data", "category": "Games", "link": "https://valorant-api.com", "auth": "None"},
|
|
506
|
+
{"name": "Wargaming.net", "description": "Wargaming titles data", "category": "Games", "link": "https://developers.wargaming.net/", "auth": "apiKey"},
|
|
507
|
+
{"name": "xkcd", "description": "xkcd comics JSON", "category": "Entertainment", "link": "https://xkcd.com/json.html", "auth": "None"},
|
|
508
|
+
{"name": "Yu-Gi-Oh!", "description": "YuGiOh card data", "category": "Games", "link": "https://db.ygoprodeck.com/api-guide/", "auth": "None"},
|
|
509
|
+
|
|
510
|
+
# === GEOCODING ===
|
|
511
|
+
{"name": "Abstract IP Geolocation", "description": "IP to location", "category": "Geocoding", "link": "https://www.abstractapi.com/ip-geolocation-api", "auth": "apiKey"},
|
|
512
|
+
{"name": "Actinia Grass GIS", "description": "Geographical data API", "category": "Geocoding", "link": "https://actinia.mundialis.de/api_docs/", "auth": "apiKey"},
|
|
513
|
+
{"name": "Apiip", "description": "IP geolocation", "category": "Geocoding", "link": "https://apiip.net/", "auth": "apiKey"},
|
|
514
|
+
{"name": "apilayer ipstack", "description": "IP geolocation", "category": "Geocoding", "link": "https://ipstack.com/", "auth": "apiKey"},
|
|
515
|
+
{"name": "BigDataCloud", "description": "IP geolocation API", "category": "Geocoding", "link": "https://www.bigdatacloud.com/ip-geolocation-apis", "auth": "apiKey"},
|
|
516
|
+
{"name": "Bing Maps", "description": "Mapping platform", "category": "Geocoding", "link": "https://www.microsoft.com/maps/choose-your-bing-maps-API.aspx", "auth": "apiKey"},
|
|
517
|
+
{"name": "Cartes.io", "description": "Create maps and markers", "category": "Geocoding", "link": "https://github.com/M-Media-Group/Cartes.io/wiki/API", "auth": "None"},
|
|
518
|
+
{"name": "CartoDB", "description": "Map generation", "category": "Geocoding", "link": "https://carto.com/developers/#apis", "auth": "None"},
|
|
519
|
+
{"name": "CountryStateCity", "description": "World location data", "category": "Geocoding", "link": "https://countrystatecity.in/", "auth": "apiKey"},
|
|
520
|
+
{"name": "GeoApi France", "description": "French geographical data", "category": "Geocoding", "link": "https://api.gouv.fr/api/geoapi.html", "auth": "None"},
|
|
521
|
+
{"name": "Geoapify", "description": "Geocoding and maps", "category": "Geocoding", "link": "https://www.geoapify.com/api/geocoding-api/", "auth": "apiKey"},
|
|
522
|
+
{"name": "Geocod.io", "description": "Address geocoding", "category": "Geocoding", "link": "https://www.geocod.io/", "auth": "apiKey"},
|
|
523
|
+
{"name": "Geocode.xyz", "description": "Forward/reverse geocoding", "category": "Geocoding", "link": "https://geocode.xyz/api", "auth": "None"},
|
|
524
|
+
{"name": "Geocodify", "description": "Worldwide geocoding", "category": "Geocoding", "link": "https://geocodify.com/", "auth": "apiKey"},
|
|
525
|
+
{"name": "GeoDataSource", "description": "City geocoding", "category": "Geocoding", "link": "https://www.geodatasource.com/web-service", "auth": "apiKey"},
|
|
526
|
+
{"name": "GeoDB Cities", "description": "Global city data", "category": "Geocoding", "link": "http://geodb-cities-api.wirefreethought.com/", "auth": "apiKey"},
|
|
527
|
+
{"name": "GeoJS", "description": "IP geolocation", "category": "Geocoding", "link": "https://www.geojs.io/", "auth": "None"},
|
|
528
|
+
{"name": "Geokeo", "description": "Geocoding service", "category": "Geocoding", "link": "https://geokeo.com", "auth": "None"},
|
|
529
|
+
{"name": "GeoNames", "description": "Place names data", "category": "Geocoding", "link": "http://www.geonames.org/export/web-services.html", "auth": "None"},
|
|
530
|
+
{"name": "geoPlugin", "description": "IP geolocation", "category": "Geocoding", "link": "https://www.geoplugin.com", "auth": "None"},
|
|
531
|
+
{"name": "Google Earth Engine", "description": "Environmental data", "category": "Geocoding", "link": "https://developers.google.com/earth-engine/", "auth": "apiKey"},
|
|
532
|
+
{"name": "Google Maps API", "description": "Digital maps", "category": "Geocoding", "link": "https://developers.google.com/maps/", "auth": "apiKey"},
|
|
533
|
+
{"name": "HERE Maps", "description": "Maps and location", "category": "Geocoding", "link": "https://developer.here.com", "auth": "apiKey"},
|
|
534
|
+
{"name": "ip-api", "description": "IP geolocation", "category": "Geocoding", "link": "https://ip-api.com/docs", "auth": "None"},
|
|
535
|
+
{"name": "IP2Location", "description": "IP geolocation", "category": "Geocoding", "link": "https://www.ip2location.com/web-service/ip2location", "auth": "apiKey"},
|
|
536
|
+
{"name": "IP2Proxy", "description": "Proxy/VPN detection", "category": "Geocoding", "link": "https://www.ip2location.com/web-service/ip2proxy", "auth": "apiKey"},
|
|
537
|
+
{"name": "ipapi.co", "description": "IP address location", "category": "Geocoding", "link": "https://ipapi.co/api/#introduction", "auth": "None"},
|
|
538
|
+
{"name": "ipapi.com", "description": "Real-time geolocation", "category": "Geocoding", "link": "https://ipapi.com/", "auth": "apiKey"},
|
|
539
|
+
{"name": "IPInfoDB", "description": "IP geolocation", "category": "Geocoding", "link": "https://www.ipinfodb.com/api", "auth": "apiKey"},
|
|
540
|
+
{"name": "Kakao Maps", "description": "Korean maps", "category": "Geocoding", "link": "https://apis.map.kakao.com", "auth": "apiKey"},
|
|
541
|
+
{"name": "LocationIQ", "description": "Geocoding and routing", "category": "Geocoding", "link": "https://locationiq.org/docs/", "auth": "apiKey"},
|
|
542
|
+
{"name": "Mapbox API", "description": "Digital maps", "category": "Geocoding", "link": "https://docs.mapbox.com/", "auth": "apiKey"},
|
|
543
|
+
{"name": "MapQuest", "description": "Mapping tools", "category": "Geocoding", "link": "https://developer.mapquest.com/", "auth": "apiKey"},
|
|
544
|
+
{"name": "Nominatim", "description": "OSM geocoding", "category": "Geocoding", "link": "https://nominatim.org/release-docs/latest/api/Overview/", "auth": "None"},
|
|
545
|
+
{"name": "OnWater", "description": "Water/land detection", "category": "Geocoding", "link": "https://onwater.io/", "auth": "None"},
|
|
546
|
+
{"name": "Open Topo Data", "description": "Elevation data", "category": "Geocoding", "link": "https://www.opentopodata.org", "auth": "None"},
|
|
547
|
+
{"name": "OpenCage", "description": "Forward/reverse geocoding", "category": "Geocoding", "link": "https://opencagedata.com", "auth": "apiKey"},
|
|
548
|
+
{"name": "openrouteservice", "description": "Routing and directions", "category": "Geocoding", "link": "https://openrouteservice.org/", "auth": "apiKey"},
|
|
549
|
+
{"name": "OpenStreetMap API", "description": "OSM data access", "category": "Geocoding", "link": "http://wiki.openstreetmap.org/wiki/API", "auth": "OAuth"},
|
|
550
|
+
{"name": "positionstack", "description": "Geocoding REST API", "category": "Geocoding", "link": "https://positionstack.com/", "auth": "apiKey"},
|
|
551
|
+
{"name": "Postcodes.io", "description": "UK postcode lookup", "category": "Geocoding", "link": "https://postcodes.io", "auth": "None"},
|
|
552
|
+
{"name": "REST Countries", "description": "Country information", "category": "Geocoding", "link": "https://restcountries.com", "auth": "None"},
|
|
553
|
+
{"name": "TomTom", "description": "Maps and routing", "category": "Geocoding", "link": "https://developer.tomtom.com/", "auth": "apiKey"},
|
|
554
|
+
{"name": "What3Words", "description": "3-word addresses", "category": "Geocoding", "link": "https://what3words.com", "auth": "apiKey"},
|
|
555
|
+
{"name": "Yandex Geocoder", "description": "Yandex geocoding", "category": "Geocoding", "link": "https://yandex.com/dev/maps/geocoder", "auth": "apiKey"},
|
|
556
|
+
{"name": "ZipCodeAPI", "description": "US zip code data", "category": "Geocoding", "link": "https://www.zipcodeapi.com", "auth": "apiKey"},
|
|
557
|
+
{"name": "Zippopotamus", "description": "Zip code info", "category": "Geocoding", "link": "http://www.zippopotam.us", "auth": "None"},
|
|
558
|
+
|
|
559
|
+
# === GOVERNMENT ===
|
|
560
|
+
{"name": "Census.gov", "description": "US Census data", "category": "Government", "link": "https://www.census.gov/data/developers/data-sets.html", "auth": "None"},
|
|
561
|
+
{"name": "Data.gov", "description": "US Government data", "category": "Government", "link": "https://api.data.gov/", "auth": "apiKey"},
|
|
562
|
+
{"name": "EPA", "description": "US EPA data", "category": "Government", "link": "https://www.epa.gov/developers/data-data-products#apis", "auth": "None"},
|
|
563
|
+
{"name": "FBI Wanted", "description": "FBI Wanted program", "category": "Government", "link": "https://www.fbi.gov/wanted/api", "auth": "None"},
|
|
564
|
+
{"name": "FEC", "description": "Campaign finance data", "category": "Government", "link": "https://api.open.fec.gov/developers/", "auth": "apiKey"},
|
|
565
|
+
{"name": "Federal Register", "description": "US Federal Register", "category": "Government", "link": "https://www.federalregister.gov/reader-aids/developer-resources/rest-api", "auth": "None"},
|
|
566
|
+
{"name": "NASA API", "description": "NASA data and images", "category": "Science", "link": "https://api.nasa.gov", "auth": "None"},
|
|
567
|
+
{"name": "UK Companies House", "description": "UK company data", "category": "Government", "link": "https://developer.company-information.service.gov.uk/", "auth": "OAuth"},
|
|
568
|
+
{"name": "USA.gov", "description": "US government info", "category": "Government", "link": "https://www.usa.gov/developer", "auth": "apiKey"},
|
|
569
|
+
{"name": "USAspending.gov", "description": "US spending data", "category": "Government", "link": "https://api.usaspending.gov/", "auth": "None"},
|
|
570
|
+
|
|
571
|
+
# === HEALTH ===
|
|
572
|
+
{"name": "CMS.gov", "description": "Medicare data", "category": "Health", "link": "https://data.cms.gov/provider-data/", "auth": "apiKey"},
|
|
573
|
+
{"name": "COVID-19 API", "description": "Covid 19 data", "category": "Health", "link": "https://covid19api.com/", "auth": "None"},
|
|
574
|
+
{"name": "COVID-19 Data", "description": "Coronavirus data", "category": "Health", "link": "https://github.com/M-Media-Group/Covid-19-API", "auth": "None"},
|
|
575
|
+
{"name": "FoodData Central", "description": "Nutrient database", "category": "Health", "link": "https://fdc.nal.usda.gov/", "auth": "apiKey"},
|
|
576
|
+
{"name": "Healthcare.gov", "description": "US health insurance", "category": "Health", "link": "https://www.healthcare.gov/developers/", "auth": "None"},
|
|
577
|
+
{"name": "Infermedica", "description": "Medical diagnosis AI", "category": "Health", "link": "https://developer.infermedica.com/docs/", "auth": "apiKey"},
|
|
578
|
+
{"name": "Nutritionix", "description": "Nutrition data", "category": "Health", "link": "https://developer.nutritionix.com/", "auth": "apiKey"},
|
|
579
|
+
{"name": "Open Disease", "description": "Disease data API", "category": "Health", "link": "https://disease.sh/", "auth": "None"},
|
|
580
|
+
{"name": "openFDA", "description": "FDA drug and food data", "category": "Health", "link": "https://open.fda.gov", "auth": "apiKey"},
|
|
581
|
+
{"name": "Quarantine API", "description": "COVID live updates", "category": "Health", "link": "https://quarantine.country/coronavirus/api/", "auth": "None"},
|
|
582
|
+
|
|
583
|
+
# === JOBS ===
|
|
584
|
+
{"name": "Adzuna", "description": "Job board aggregator", "category": "Jobs", "link": "https://developer.adzuna.com/overview", "auth": "apiKey"},
|
|
585
|
+
{"name": "Arbeitnow", "description": "European job board", "category": "Jobs", "link": "https://documenter.getpostman.com/view/18545278/UVJbJdKh", "auth": "None"},
|
|
586
|
+
{"name": "Careerjet", "description": "Job search engine", "category": "Jobs", "link": "https://www.careerjet.com/partners/api/", "auth": "apiKey"},
|
|
587
|
+
{"name": "Findwork", "description": "Job board API", "category": "Jobs", "link": "https://findwork.dev/developers/", "auth": "apiKey"},
|
|
588
|
+
{"name": "GraphQL Jobs", "description": "Jobs with GraphQL", "category": "Jobs", "link": "https://graphql.jobs/docs/api/", "auth": "None"},
|
|
589
|
+
{"name": "Jooble", "description": "Job search engine", "category": "Jobs", "link": "https://jooble.org/api/about", "auth": "apiKey"},
|
|
590
|
+
{"name": "Open Skills", "description": "Job skills data", "category": "Jobs", "link": "https://github.com/workforce-data-initiative/skills-api/wiki/API-Overview", "auth": "None"},
|
|
591
|
+
{"name": "Reed", "description": "UK job board", "category": "Jobs", "link": "https://www.reed.co.uk/developers", "auth": "apiKey"},
|
|
592
|
+
{"name": "The Muse", "description": "Jobs and companies", "category": "Jobs", "link": "https://www.themuse.com/developers/api/v2", "auth": "apiKey"},
|
|
593
|
+
{"name": "Upwork API", "description": "Freelance job board", "category": "Jobs", "link": "https://developers.upwork.com/", "auth": "OAuth"},
|
|
594
|
+
{"name": "USAJOBS", "description": "US government jobs", "category": "Jobs", "link": "https://developer.usajobs.gov/", "auth": "apiKey"},
|
|
595
|
+
|
|
596
|
+
# === MACHINE LEARNING ===
|
|
597
|
+
{"name": "AI For Thai", "description": "Thai AI APIs", "category": "AI/ML", "link": "https://aiforthai.in.th/index.php", "auth": "apiKey"},
|
|
598
|
+
{"name": "Clarifai", "description": "Computer Vision", "category": "AI/ML", "link": "https://docs.clarifai.com/api-guide/api-overview", "auth": "OAuth"},
|
|
599
|
+
{"name": "Cloudmersive Vision", "description": "Image recognition", "category": "AI/ML", "link": "https://www.cloudmersive.com/image-recognition-and-processing-api", "auth": "apiKey"},
|
|
600
|
+
{"name": "Dialogflow", "description": "Natural Language AI", "category": "AI/ML", "link": "https://cloud.google.com/dialogflow/docs/", "auth": "apiKey"},
|
|
601
|
+
{"name": "Hirak FaceAPI", "description": "Face detection", "category": "AI/ML", "link": "https://faceapi.hirak.site/", "auth": "apiKey"},
|
|
602
|
+
{"name": "Imagga", "description": "Image recognition", "category": "AI/ML", "link": "https://imagga.com/", "auth": "apiKey"},
|
|
603
|
+
{"name": "Irisnet", "description": "Content moderation", "category": "AI/ML", "link": "https://irisnet.de/api/", "auth": "apiKey"},
|
|
604
|
+
{"name": "Keen IO", "description": "Data Analytics", "category": "Analytics", "link": "https://keen.io/", "auth": "apiKey"},
|
|
605
|
+
{"name": "NLP Cloud", "description": "NLP API services", "category": "AI/ML", "link": "https://nlpcloud.io", "auth": "apiKey"},
|
|
606
|
+
{"name": "OpenVisionAPI", "description": "Computer vision", "category": "AI/ML", "link": "https://openvisionapi.com", "auth": "None"},
|
|
607
|
+
{"name": "Perspective API", "description": "NLP toxicity detection", "category": "AI/ML", "link": "https://perspectiveapi.com", "auth": "apiKey"},
|
|
608
|
+
{"name": "Roboflow Universe", "description": "Computer vision models", "category": "AI/ML", "link": "https://universe.roboflow.com", "auth": "apiKey"},
|
|
609
|
+
{"name": "SkyBiometry", "description": "Face detection/recognition", "category": "AI/ML", "link": "https://skybiometry.com/documentation/", "auth": "apiKey"},
|
|
610
|
+
{"name": "Time Door", "description": "Time series analysis", "category": "AI/ML", "link": "https://timedoor.io", "auth": "apiKey"},
|
|
611
|
+
{"name": "Unplugg", "description": "Forecasting API", "category": "AI/ML", "link": "https://unplu.gg/test_api.html", "auth": "apiKey"},
|
|
612
|
+
{"name": "WolframAlpha", "description": "Computational knowledge", "category": "AI/ML", "link": "https://products.wolframalpha.com/api/", "auth": "apiKey"},
|
|
613
|
+
|
|
614
|
+
# === MUSIC ===
|
|
615
|
+
{"name": "7digital", "description": "Music store API", "category": "Music", "link": "https://docs.7digital.com/reference", "auth": "OAuth"},
|
|
616
|
+
{"name": "AI Mastering", "description": "Automated music mastering", "category": "Music", "link": "https://aimastering.com/api_docs/", "auth": "apiKey"},
|
|
617
|
+
{"name": "Audiomack", "description": "Streaming music hub", "category": "Music", "link": "https://www.audiomack.com/data-api/docs", "auth": "OAuth"},
|
|
618
|
+
{"name": "Bandcamp", "description": "Music store API", "category": "Music", "link": "https://bandcamp.com/developer", "auth": "OAuth"},
|
|
619
|
+
{"name": "Bandsintown", "description": "Music events", "category": "Music", "link": "https://app.swaggerhub.com/apis/Bandsintown/PublicAPI/3.0.0", "auth": "None"},
|
|
620
|
+
{"name": "Deezer API", "description": "Music discovery", "category": "Music", "link": "http://developers.deezer.com/api", "auth": "OAuth"},
|
|
621
|
+
{"name": "Discogs API", "description": "Music database", "category": "Music", "link": "https://www.discogs.com/developers/", "auth": "OAuth"},
|
|
622
|
+
{"name": "Freesound", "description": "Music samples", "category": "Music", "link": "https://freesound.org/docs/api/", "auth": "apiKey"},
|
|
623
|
+
{"name": "Gaana API", "description": "Indian music data", "category": "Music", "link": "https://github.com/cyberboysumanjay/GaanaAPI", "auth": "None"},
|
|
624
|
+
{"name": "Genius Lyrics", "description": "Crowdsourced lyrics", "category": "Music", "link": "https://docs.genius.com/", "auth": "OAuth"},
|
|
625
|
+
{"name": "Genrenator", "description": "Music genre generator", "category": "Music", "link": "https://binaryjazz.us/genrenator-api/", "auth": "None"},
|
|
626
|
+
{"name": "iTunes Search", "description": "iTunes content search", "category": "Music", "link": "https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/", "auth": "None"},
|
|
627
|
+
{"name": "Jamendo", "description": "Music licensing", "category": "Music", "link": "https://developer.jamendo.com/v3.0/docs", "auth": "OAuth"},
|
|
628
|
+
{"name": "JioSaavn API", "description": "Indian music data", "category": "Music", "link": "https://github.com/cyberboysumanjay/JioSaavnAPI", "auth": "None"},
|
|
629
|
+
{"name": "KKBOX", "description": "Music libraries and playlists", "category": "Music", "link": "https://developer.kkbox.com", "auth": "OAuth"},
|
|
630
|
+
{"name": "Last.fm", "description": "Music scrobbling", "category": "Music", "link": "http://www.last.fm/api", "auth": "apiKey"},
|
|
631
|
+
{"name": "Lyrics.ovh", "description": "Song lyrics", "category": "Music", "link": "https://lyricsovh.docs.apiary.io", "auth": "None"},
|
|
632
|
+
{"name": "Mixcloud", "description": "Music mixes", "category": "Music", "link": "https://www.mixcloud.com/developers/", "auth": "OAuth"},
|
|
633
|
+
{"name": "MusicBrainz", "description": "Music metadata", "category": "Music", "link": "https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2", "auth": "None"},
|
|
634
|
+
{"name": "Musixmatch", "description": "Lyrics API", "category": "Music", "link": "https://developer.musixmatch.com/", "auth": "apiKey"},
|
|
635
|
+
{"name": "Napster", "description": "Music streaming", "category": "Music", "link": "https://developer.napster.com/api/v2.2", "auth": "apiKey"},
|
|
636
|
+
{"name": "Openwhyd", "description": "Curated playlists", "category": "Music", "link": "https://openwhyd.github.io/openwhyd/API", "auth": "None"},
|
|
637
|
+
{"name": "Radio Browser", "description": "Internet radio stations", "category": "Music", "link": "https://api.radio-browser.info/", "auth": "None"},
|
|
638
|
+
{"name": "Setlist.fm", "description": "Setlist data", "category": "Music", "link": "https://api.setlist.fm/docs/1.0/index.html", "auth": "None"},
|
|
639
|
+
{"name": "Songkick", "description": "Music events", "category": "Music", "link": "https://www.songkick.com/developer/", "auth": "apiKey"},
|
|
640
|
+
{"name": "Songlink/Odesli", "description": "Cross-platform song links", "category": "Music", "link": "https://www.notion.so/API-d0ebe08a5e304a55928405eb682f6741", "auth": "apiKey"},
|
|
641
|
+
{"name": "Songsterr", "description": "Guitar tabs", "category": "Music", "link": "https://www.songsterr.com/a/wa/api/", "auth": "None"},
|
|
642
|
+
{"name": "SoundCloud", "description": "Music streaming", "category": "Music", "link": "https://developers.soundcloud.com/docs/api/guide", "auth": "OAuth"},
|
|
643
|
+
{"name": "Spotify API", "description": "Music streaming", "category": "Music", "link": "https://beta.developer.spotify.com/documentation/web-api/", "auth": "OAuth"},
|
|
644
|
+
{"name": "TasteDive", "description": "Similar music/movies", "category": "Music", "link": "https://tastedive.com/read/api", "auth": "apiKey"},
|
|
645
|
+
{"name": "TheAudioDB", "description": "Music metadata", "category": "Music", "link": "https://www.theaudiodb.com/api_guide.php", "auth": "apiKey"},
|
|
646
|
+
|
|
647
|
+
# === NEWS ===
|
|
648
|
+
{"name": "apilayer mediastack", "description": "Live news data", "category": "News", "link": "https://mediastack.com/", "auth": "apiKey"},
|
|
649
|
+
{"name": "Associated Press", "description": "News and metadata", "category": "News", "link": "https://developer.ap.org/", "auth": "apiKey"},
|
|
650
|
+
{"name": "Chronicling America", "description": "Historic US newspapers", "category": "News", "link": "http://chroniclingamerica.loc.gov/about/api/", "auth": "None"},
|
|
651
|
+
{"name": "Currents API", "description": "Latest news", "category": "News", "link": "https://currentsapi.services/", "auth": "apiKey"},
|
|
652
|
+
{"name": "Feedbin API", "description": "RSS reader", "category": "News", "link": "https://github.com/feedbin/feedbin-api", "auth": "OAuth"},
|
|
653
|
+
{"name": "GNews", "description": "News from sources", "category": "News", "link": "https://gnews.io/", "auth": "apiKey"},
|
|
654
|
+
{"name": "Inshorts News", "description": "Indian news", "category": "News", "link": "https://github.com/cyberboysumanjay/Inshorts-News-API", "auth": "None"},
|
|
655
|
+
{"name": "MarketAux", "description": "Stock market news", "category": "News", "link": "https://www.marketaux.com/", "auth": "apiKey"},
|
|
656
|
+
{"name": "New York Times", "description": "NYT APIs", "category": "News", "link": "https://developer.nytimes.com/", "auth": "apiKey"},
|
|
657
|
+
{"name": "NewsAPI", "description": "Headlines API", "category": "News", "link": "https://newsapi.org/", "auth": "apiKey"},
|
|
658
|
+
{"name": "NewsData.io", "description": "News data API", "category": "News", "link": "https://newsdata.io/docs", "auth": "apiKey"},
|
|
659
|
+
{"name": "NPR One", "description": "Personalized news", "category": "News", "link": "http://dev.npr.org/api/", "auth": "OAuth"},
|
|
660
|
+
{"name": "Spaceflight News", "description": "Space news API", "category": "News", "link": "https://spaceflightnewsapi.net", "auth": "None"},
|
|
661
|
+
{"name": "The Guardian", "description": "Guardian content", "category": "News", "link": "http://open-platform.theguardian.com/", "auth": "apiKey"},
|
|
662
|
+
{"name": "TheNews API", "description": "Headlines API", "category": "News", "link": "https://www.thenewsapi.com/", "auth": "apiKey"},
|
|
663
|
+
{"name": "Trove", "description": "Australian newspapers", "category": "News", "link": "https://trove.nla.gov.au/about/create-something/using-api", "auth": "apiKey"},
|
|
664
|
+
|
|
665
|
+
# === OPEN DATA ===
|
|
666
|
+
{"name": "18F", "description": "US Federal Gov APIs", "category": "Open Data", "link": "http://18f.github.io/API-All-the-X/", "auth": "None"},
|
|
667
|
+
{"name": "API Setu", "description": "Indian Gov APIs", "category": "Open Data", "link": "https://www.apisetu.gov.in/", "auth": "None"},
|
|
668
|
+
{"name": "Archive.org", "description": "Internet Archive", "category": "Open Data", "link": "https://archive.readme.io/docs", "auth": "None"},
|
|
669
|
+
{"name": "Callook.info", "description": "US ham radio callsigns", "category": "Open Data", "link": "https://callook.info", "auth": "None"},
|
|
670
|
+
{"name": "CARTO API", "description": "Location data", "category": "Open Data", "link": "https://carto.com/", "auth": "apiKey"},
|
|
671
|
+
{"name": "CollegeScoreCard", "description": "US higher education data", "category": "Open Data", "link": "https://collegescorecard.ed.gov/data/", "auth": "None"},
|
|
672
|
+
{"name": "Enigma Public", "description": "Public data collection", "category": "Open Data", "link": "https://developers.enigma.com/docs", "auth": "apiKey"},
|
|
673
|
+
{"name": "Joshua Project", "description": "People groups data", "category": "Open Data", "link": "https://api.joshuaproject.net/", "auth": "apiKey"},
|
|
674
|
+
{"name": "Kaggle API", "description": "Datasets and notebooks", "category": "Open Data", "link": "https://www.kaggle.com/docs/api", "auth": "apiKey"},
|
|
675
|
+
{"name": "LinkPreview", "description": "URL metadata extraction", "category": "Open Data", "link": "https://www.linkpreview.net", "auth": "apiKey"},
|
|
676
|
+
{"name": "Microlink.io", "description": "Extract web data", "category": "Open Data", "link": "https://microlink.io", "auth": "None"},
|
|
677
|
+
{"name": "Nasdaq Data Link", "description": "Stock market data", "category": "Open Data", "link": "https://docs.data.nasdaq.com/", "auth": "apiKey"},
|
|
678
|
+
{"name": "Nobel Prize API", "description": "Nobel Prize data", "category": "Open Data", "link": "https://www.nobelprize.org/about/developer-zone-2/", "auth": "None"},
|
|
679
|
+
{"name": "OpenCorporates", "description": "Corporate data", "category": "Open Data", "link": "http://api.opencorporates.com/documentation/API-Reference", "auth": "apiKey"},
|
|
680
|
+
{"name": "OpenSanctions", "description": "Sanctions data", "category": "Open Data", "link": "https://www.opensanctions.org/docs/api/", "auth": "None"},
|
|
681
|
+
{"name": "Socrata", "description": "Open data platform", "category": "Open Data", "link": "https://dev.socrata.com/", "auth": "OAuth"},
|
|
682
|
+
{"name": "Teleport", "description": "Quality of Life data", "category": "Open Data", "link": "https://developers.teleport.org/", "auth": "None"},
|
|
683
|
+
{"name": "Universities List", "description": "University domains", "category": "Open Data", "link": "https://github.com/Hipo/university-domains-list", "auth": "None"},
|
|
684
|
+
{"name": "UPC Database", "description": "Barcode database", "category": "Open Data", "link": "https://upcdatabase.org/api", "auth": "apiKey"},
|
|
685
|
+
{"name": "Wikidata API", "description": "Knowledge base", "category": "Open Data", "link": "https://www.wikidata.org/w/api.php?action=help", "auth": "OAuth"},
|
|
686
|
+
{"name": "Wikipedia API", "description": "Mediawiki encyclopedia", "category": "Open Data", "link": "https://www.mediawiki.org/wiki/API:Main_page", "auth": "None"},
|
|
687
|
+
{"name": "Yelp API", "description": "Local business data", "category": "Open Data", "link": "https://www.yelp.com/developers/documentation/v3", "auth": "OAuth"},
|
|
688
|
+
|
|
689
|
+
# === OPEN SOURCE ===
|
|
690
|
+
{"name": "Countly", "description": "Web analytics", "category": "Analytics", "link": "https://api.count.ly/reference", "auth": "None"},
|
|
691
|
+
{"name": "Creative Commons", "description": "Open licensed content", "category": "Open Data", "link": "https://api.creativecommons.engineering/", "auth": "OAuth"},
|
|
692
|
+
{"name": "Datamuse", "description": "Word-finding API", "category": "Content", "link": "https://www.datamuse.com/api/", "auth": "None"},
|
|
693
|
+
{"name": "Drupal.org", "description": "Drupal data", "category": "Development", "link": "https://www.drupal.org/drupalorg/docs/api", "auth": "None"},
|
|
694
|
+
{"name": "Evil Insult Generator", "description": "Evil insults", "category": "Entertainment", "link": "https://evilinsult.com/api", "auth": "None"},
|
|
695
|
+
{"name": "GitHub Contributions", "description": "GitHub contribution image", "category": "Development", "link": "https://github-contributions.vercel.app", "auth": "None"},
|
|
696
|
+
{"name": "GitHub ReadMe Stats", "description": "GitHub profile stats", "category": "Development", "link": "https://github.com/anuraghazra/github-readme-stats", "auth": "None"},
|
|
697
|
+
{"name": "Metabase", "description": "Business intelligence", "category": "Analytics", "link": "https://www.metabase.com/", "auth": "None"},
|
|
698
|
+
{"name": "Shields.io", "description": "Badge generation", "category": "Development", "link": "https://shields.io/", "auth": "None"},
|
|
699
|
+
|
|
700
|
+
# === PATENT ===
|
|
701
|
+
{"name": "EPO Patent API", "description": "European patents", "category": "Business", "link": "https://developers.epo.org/", "auth": "OAuth"},
|
|
702
|
+
{"name": "PatentsView", "description": "US patent data", "category": "Business", "link": "https://patentsview.org/apis/purpose", "auth": "None"},
|
|
703
|
+
{"name": "USPTO API", "description": "US patent services", "category": "Business", "link": "https://www.uspto.gov/learning-and-resources/open-data-and-mobility", "auth": "None"},
|
|
704
|
+
|
|
705
|
+
# === PERSONALITY ===
|
|
706
|
+
{"name": "Advice Slip", "description": "Random advice", "category": "Entertainment", "link": "http://api.adviceslip.com/", "auth": "None"},
|
|
707
|
+
{"name": "FavQs", "description": "Quote collection", "category": "Content", "link": "https://favqs.com/api", "auth": "apiKey"},
|
|
708
|
+
{"name": "Forismatic", "description": "Inspirational quotes", "category": "Content", "link": "http://forismatic.com/en/api/", "auth": "None"},
|
|
709
|
+
{"name": "icanhazdadjoke", "description": "Dad jokes", "category": "Entertainment", "link": "https://icanhazdadjoke.com/api", "auth": "None"},
|
|
710
|
+
{"name": "kanye.rest", "description": "Kanye West quotes", "category": "Entertainment", "link": "https://kanye.rest", "auth": "None"},
|
|
711
|
+
{"name": "Medium API", "description": "Medium platform", "category": "Content", "link": "https://github.com/Medium/medium-api-docs", "auth": "OAuth"},
|
|
712
|
+
{"name": "Programming Quotes", "description": "Programmer quotes", "category": "Content", "link": "https://github.com/skolakoda/programming-quotes-api", "auth": "None"},
|
|
713
|
+
{"name": "Quotable", "description": "Quotes API", "category": "Content", "link": "https://github.com/lukePeavey/quotable", "auth": "None"},
|
|
714
|
+
{"name": "Quote Garden", "description": "5000+ quotes", "category": "Content", "link": "https://pprathameshmore.github.io/QuoteGarden/", "auth": "None"},
|
|
715
|
+
{"name": "Stoicism Quote", "description": "Stoic quotes", "category": "Content", "link": "https://github.com/tlcheah2/stoic-quote-lambda-public-api", "auth": "None"},
|
|
716
|
+
{"name": "They Said So", "description": "Quote of the day", "category": "Content", "link": "https://theysaidso.com/api/", "auth": "None"},
|
|
717
|
+
{"name": "Traitify", "description": "Personality assessments", "category": "Content", "link": "https://app.traitify.com/developer", "auth": "None"},
|
|
718
|
+
{"name": "Udemy Instructor", "description": "Udemy instructor API", "category": "Content", "link": "https://www.udemy.com/developers/instructor/", "auth": "apiKey"},
|
|
719
|
+
{"name": "Zen Quotes", "description": "Zen quotes", "category": "Content", "link": "https://zenquotes.io/", "auth": "None"},
|
|
720
|
+
|
|
721
|
+
# === PHONE ===
|
|
722
|
+
{"name": "Abstract Phone", "description": "Phone validation", "category": "Validation", "link": "https://www.abstractapi.com/phone-validation-api", "auth": "apiKey"},
|
|
723
|
+
{"name": "apilayer numverify", "description": "Phone number validation", "category": "Validation", "link": "https://numverify.com", "auth": "apiKey"},
|
|
724
|
+
{"name": "Cloudmersive Phone", "description": "Phone validation", "category": "Validation", "link": "https://cloudmersive.com/phone-number-validation-API", "auth": "apiKey"},
|
|
725
|
+
{"name": "Phone Specification", "description": "Phone specs API", "category": "Content", "link": "https://github.com/azharimm/phone-specs-api", "auth": "None"},
|
|
726
|
+
{"name": "Veriphone", "description": "Phone validation", "category": "Validation", "link": "https://veriphone.io", "auth": "apiKey"},
|
|
727
|
+
|
|
728
|
+
# === PHOTOGRAPHY ===
|
|
729
|
+
{"name": "apilayer screenshotlayer", "description": "URL to image", "category": "Photography", "link": "https://screenshotlayer.com", "auth": "None"},
|
|
730
|
+
{"name": "APITemplate.io", "description": "Image and PDF generation", "category": "Photography", "link": "https://apitemplate.io", "auth": "apiKey"},
|
|
731
|
+
{"name": "Bruzu", "description": "Dynamic image generation", "category": "Photography", "link": "https://docs.bruzu.com", "auth": "apiKey"},
|
|
732
|
+
{"name": "CheetahO", "description": "Photo optimization", "category": "Photography", "link": "https://cheetaho.com/docs/getting-started/", "auth": "apiKey"},
|
|
733
|
+
{"name": "Dagpi", "description": "Image manipulation", "category": "Photography", "link": "https://dagpi.xyz", "auth": "apiKey"},
|
|
734
|
+
{"name": "Duply", "description": "Image and video management", "category": "Photography", "link": "https://duply.co/docs#getting-started-api", "auth": "apiKey"},
|
|
735
|
+
{"name": "DynaPictures", "description": "Personalized images", "category": "Photography", "link": "https://dynapictures.com/docs/", "auth": "apiKey"},
|
|
736
|
+
{"name": "Flickr API", "description": "Photo sharing", "category": "Photography", "link": "https://www.flickr.com/services/api/", "auth": "OAuth"},
|
|
737
|
+
{"name": "Getty Images", "description": "Stock images", "category": "Photography", "link": "http://developers.gettyimages.com/en/", "auth": "OAuth"},
|
|
738
|
+
{"name": "Gfycat", "description": "GIF platform", "category": "Photography", "link": "https://developers.gfycat.com/api/", "auth": "OAuth"},
|
|
739
|
+
{"name": "Giphy API", "description": "GIF library", "category": "Photography", "link": "https://developers.giphy.com/docs/", "auth": "apiKey"},
|
|
740
|
+
{"name": "Google Photos", "description": "Photo management", "category": "Photography", "link": "https://developers.google.com/photos", "auth": "OAuth"},
|
|
741
|
+
{"name": "Imgur API", "description": "Image hosting", "category": "Photography", "link": "https://apidocs.imgur.com/", "auth": "OAuth"},
|
|
742
|
+
{"name": "Imsea", "description": "Free image search", "category": "Photography", "link": "https://imsea.herokuapp.com/", "auth": "None"},
|
|
743
|
+
{"name": "Lorem Picsum", "description": "Placeholder images", "category": "Photography", "link": "https://picsum.photos/", "auth": "None"},
|
|
744
|
+
{"name": "ObjectCut", "description": "Background removal", "category": "Photography", "link": "https://objectcut.com/", "auth": "apiKey"},
|
|
745
|
+
{"name": "Pexels API", "description": "Stock photos", "category": "Photography", "link": "https://www.pexels.com/api/", "auth": "apiKey"},
|
|
746
|
+
{"name": "PhotoRoom", "description": "Background removal", "category": "Photography", "link": "https://www.photoroom.com/api/", "auth": "apiKey"},
|
|
747
|
+
{"name": "Pixabay API", "description": "Stock photos", "category": "Photography", "link": "https://pixabay.com/sk/service/about/api/", "auth": "apiKey"},
|
|
748
|
+
{"name": "PlaceKeanu", "description": "Keanu placeholder images", "category": "Photography", "link": "https://placekeanu.com/", "auth": "None"},
|
|
749
|
+
{"name": "Remove.bg", "description": "Background removal", "category": "Photography", "link": "https://www.remove.bg/api", "auth": "apiKey"},
|
|
750
|
+
{"name": "ReSmush.it", "description": "Photo optimization", "category": "Photography", "link": "https://resmush.it/api", "auth": "None"},
|
|
751
|
+
{"name": "Shutterstock API", "description": "Stock media", "category": "Photography", "link": "https://api-reference.shutterstock.com/", "auth": "OAuth"},
|
|
752
|
+
{"name": "Sirv", "description": "Image management", "category": "Photography", "link": "https://apidocs.sirv.com/", "auth": "apiKey"},
|
|
753
|
+
{"name": "Unsplash API", "description": "Stock photos", "category": "Photography", "link": "https://unsplash.com/developers", "auth": "OAuth"},
|
|
754
|
+
{"name": "Wallhaven API", "description": "Wallpapers", "category": "Photography", "link": "https://wallhaven.cc/help/api", "auth": "apiKey"},
|
|
755
|
+
|
|
756
|
+
# === PROGRAMMING ===
|
|
757
|
+
{"name": "Codeforces API", "description": "Competitive programming", "category": "Development", "link": "https://codeforces.com/apiHelp", "auth": "apiKey"},
|
|
758
|
+
{"name": "Hackerearth", "description": "Code compilation", "category": "Development", "link": "https://www.hackerearth.com/docs/wiki/developers/v4/", "auth": "apiKey"},
|
|
759
|
+
{"name": "Judge0 CE", "description": "Online code execution", "category": "Development", "link": "https://ce.judge0.com/", "auth": "apiKey"},
|
|
760
|
+
{"name": "KONTESTS", "description": "Coding contests", "category": "Development", "link": "https://kontests.net/api", "auth": "None"},
|
|
761
|
+
{"name": "Mintlify", "description": "Documentation generation", "category": "Development", "link": "https://docs.mintlify.com", "auth": "apiKey"},
|
|
762
|
+
|
|
763
|
+
# === SCIENCE & MATH ===
|
|
764
|
+
{"name": "arcsecond.io", "description": "Astronomy data", "category": "Science", "link": "https://api.arcsecond.io/", "auth": "None"},
|
|
765
|
+
{"name": "arXiv API", "description": "Research papers", "category": "Science", "link": "https://arxiv.org/help/api/user-manual", "auth": "None"},
|
|
766
|
+
{"name": "CORE", "description": "Open access research", "category": "Science", "link": "https://core.ac.uk/services#api", "auth": "apiKey"},
|
|
767
|
+
{"name": "GBIF", "description": "Biodiversity data", "category": "Science", "link": "https://www.gbif.org/developer/summary", "auth": "None"},
|
|
768
|
+
{"name": "inspirehep.net", "description": "High energy physics", "category": "Science", "link": "https://github.com/inspirehep/rest-api-doc", "auth": "None"},
|
|
769
|
+
{"name": "isEven", "description": "Check if number is even", "category": "Entertainment", "link": "https://isevenapi.xyz/", "auth": "None"},
|
|
770
|
+
{"name": "ISRO API", "description": "ISRO spacecraft info", "category": "Science", "link": "https://isro.vercel.app", "auth": "None"},
|
|
771
|
+
{"name": "ITIS", "description": "Taxonomic information", "category": "Science", "link": "https://www.itis.gov/ws_description.html", "auth": "None"},
|
|
772
|
+
{"name": "Launch Library 2", "description": "Spaceflight launches", "category": "Science", "link": "https://thespacedevs.com/llapi", "auth": "None"},
|
|
773
|
+
{"name": "Minor Planet Center", "description": "Asteroid data", "category": "Science", "link": "http://www.asterank.com/mpc", "auth": "None"},
|
|
774
|
+
{"name": "NASA ADS", "description": "Astrophysics data", "category": "Science", "link": "https://ui.adsabs.harvard.edu/help/api/api-docs.html", "auth": "OAuth"},
|
|
775
|
+
{"name": "Newton Math", "description": "Math calculator", "category": "Science", "link": "https://newton.vercel.app", "auth": "None"},
|
|
776
|
+
{"name": "Numbers API", "description": "Number facts", "category": "Science", "link": "http://numbersapi.com", "auth": "None"},
|
|
777
|
+
{"name": "Open Notify ISS", "description": "ISS data", "category": "Science", "link": "http://open-notify.org/Open-Notify-API/", "auth": "None"},
|
|
778
|
+
{"name": "Open Science Framework", "description": "Research repository", "category": "Science", "link": "https://developer.osf.io", "auth": "None"},
|
|
779
|
+
{"name": "SpaceX API", "description": "SpaceX data", "category": "Science", "link": "https://github.com/r-spacex/SpaceX-API", "auth": "None"},
|
|
780
|
+
{"name": "Sunrise Sunset", "description": "Sun times API", "category": "Science", "link": "https://sunrise-sunset.org/api", "auth": "None"},
|
|
781
|
+
{"name": "TLE API", "description": "Satellite information", "category": "Science", "link": "https://tle.ivanstanojevic.me/#/docs", "auth": "None"},
|
|
782
|
+
{"name": "USGS Earthquake", "description": "Earthquake data", "category": "Science", "link": "https://earthquake.usgs.gov/fdsnws/event/1/", "auth": "None"},
|
|
783
|
+
{"name": "USGS Water Services", "description": "Water quality data", "category": "Science", "link": "https://waterservices.usgs.gov/", "auth": "None"},
|
|
784
|
+
{"name": "World Bank", "description": "World data", "category": "Science", "link": "https://datahelpdesk.worldbank.org/knowledgebase/topics/125589", "auth": "None"},
|
|
785
|
+
|
|
786
|
+
# === SOCIAL ===
|
|
787
|
+
{"name": "Ayrshare", "description": "Social media APIs", "category": "Social", "link": "https://docs.ayrshare.com", "auth": "apiKey"},
|
|
788
|
+
{"name": "Daily Motion", "description": "Video sharing", "category": "Social", "link": "https://developer.dailymotion.com/", "auth": "None"},
|
|
789
|
+
{"name": "DeviantArt API", "description": "Art community", "category": "Social", "link": "https://www.deviantart.com/developers/", "auth": "None"},
|
|
790
|
+
{"name": "Facebook API", "description": "Social platform", "category": "Social", "link": "https://developers.facebook.com/", "auth": "None"},
|
|
791
|
+
{"name": "Flickr API", "description": "Photo sharing", "category": "Social", "link": "https://www.flickr.com/services/api/", "auth": "None"},
|
|
792
|
+
{"name": "Foursquare API", "description": "Location sharing", "category": "Social", "link": "https://developer.foursquare.com/", "auth": "None"},
|
|
793
|
+
{"name": "GoodReads API", "description": "Book community", "category": "Social", "link": "https://www.goodreads.com/api", "auth": "None"},
|
|
794
|
+
{"name": "Gravatar API", "description": "Avatar service", "category": "Social", "link": "https://en.gravatar.com/site/implement/", "auth": "None"},
|
|
795
|
+
{"name": "Hacker News API", "description": "Tech news", "category": "Social", "link": "https://github.com/HackerNews/API", "auth": "None"},
|
|
796
|
+
{"name": "Imgur API", "description": "Image sharing", "category": "Social", "link": "https://api.imgur.com/", "auth": "None"},
|
|
797
|
+
{"name": "Instagram API", "description": "Photo sharing", "category": "Social", "link": "https://www.instagram.com/developer/", "auth": "None"},
|
|
798
|
+
{"name": "LinkedIn API", "description": "Professional network", "category": "Social", "link": "https://developer.linkedin.com/", "auth": "None"},
|
|
799
|
+
{"name": "Mastodon API", "description": "Decentralized social", "category": "Social", "link": "https://docs.joinmastodon.org/", "auth": "None"},
|
|
800
|
+
{"name": "Pinterest API", "description": "Image pinning", "category": "Social", "link": "https://www.pinterest.com/login/?next=http%3A%2F%2Fdevelopers.pinterest.com%2Fapi_docs%2F", "auth": "None"},
|
|
801
|
+
{"name": "Reddit API", "description": "Forum platform", "category": "Social", "link": "https://github.com/reddit/reddit/wiki/API", "auth": "None"},
|
|
802
|
+
{"name": "Telegram API", "description": "Messaging platform", "category": "Social", "link": "https://core.telegram.org/", "auth": "None"},
|
|
803
|
+
{"name": "TikTok API", "description": "Video platform", "category": "Social", "link": "https://developers.tiktok.com/", "auth": "None"},
|
|
804
|
+
{"name": "Tumblr API", "description": "Blogging platform", "category": "Social", "link": "https://www.tumblr.com/docs/en/api/v2", "auth": "None"},
|
|
805
|
+
{"name": "Twitch API", "description": "Streaming platform", "category": "Social", "link": "https://dev.twitch.tv/docs", "auth": "None"},
|
|
806
|
+
{"name": "Twitter/X API", "description": "Social platform", "category": "Social", "link": "https://developer.twitter.com/", "auth": "None"},
|
|
807
|
+
{"name": "Viber API", "description": "Messaging platform", "category": "Social", "link": "https://developers.viber.com/docs/api/", "auth": "None"},
|
|
808
|
+
{"name": "Vimeo API", "description": "Video platform", "category": "Social", "link": "https://developer.vimeo.com/", "auth": "None"},
|
|
809
|
+
{"name": "VK API", "description": "Social network", "category": "Social", "link": "https://vk.com/dev", "auth": "None"},
|
|
810
|
+
{"name": "Weibo API", "description": "Chinese microblogging", "category": "Social", "link": "http://open.weibo.com/wiki/API%E6%96%87%E6%A1%A3/en", "auth": "None"},
|
|
811
|
+
{"name": "WordPress API", "description": "Blogging platform", "category": "Social", "link": "https://codex.wordpress.org/WordPress_APIs", "auth": "None"},
|
|
812
|
+
{"name": "YouTube API", "description": "Video platform", "category": "Social", "link": "https://developers.google.com/youtube/", "auth": "None"},
|
|
813
|
+
{"name": "Zomato API", "description": "Restaurant data", "category": "Social", "link": "https://developers.zomato.com/api", "auth": "None"},
|
|
814
|
+
|
|
815
|
+
# === SPORTS ===
|
|
816
|
+
{"name": "Ergast Formula 1", "description": "F1 race data", "category": "Sports", "link": "http://ergast.com/mrd/", "auth": "None"},
|
|
817
|
+
{"name": "Football Prediction", "description": "Football predictions", "category": "Sports", "link": "https://boggio-analytics.com/fp-api/", "auth": "apiKey"},
|
|
818
|
+
{"name": "LIVE-SCORE API", "description": "Football live scores", "category": "Sports", "link": "https://live-score-api.com/documentation/reference/", "auth": "apiKey"},
|
|
819
|
+
{"name": "NBA Stats API", "description": "NBA stats", "category": "Sports", "link": "https://nbaapi.com/graphql/", "auth": "None"},
|
|
820
|
+
{"name": "OpenF1", "description": "Real-time F1 data", "category": "Sports", "link": "https://openf1.org/", "auth": "None"},
|
|
821
|
+
{"name": "OpenLigaDB", "description": "Football league data", "category": "Sports", "link": "https://www.openligadb.de/", "auth": "None"},
|
|
822
|
+
{"name": "TheSportsDB", "description": "Sports data", "category": "Sports", "link": "http://www.thesportsdb.com/", "auth": "None"},
|
|
823
|
+
|
|
824
|
+
# === TRANSPORTATION ===
|
|
825
|
+
{"name": "ADS-B Exchange", "description": "Aircraft tracking", "category": "Transportation", "link": "https://www.adsbexchange.com/data/", "auth": "None"},
|
|
826
|
+
{"name": "AfterShip", "description": "Shipment tracking", "category": "Transportation", "link": "https://www.aftership.com/docs/api/4/overview", "auth": "None"},
|
|
827
|
+
{"name": "CarsXE API", "description": "Vehicle records", "category": "Transportation", "link": "https://api.carsxe.com/", "auth": "apiKey"},
|
|
828
|
+
{"name": "Edmunds", "description": "Car data", "category": "Transportation", "link": "http://developer.edmunds.com/", "auth": "None"},
|
|
829
|
+
{"name": "HyperTrack", "description": "Movement tracking", "category": "Transportation", "link": "https://docs.hypertrack.com", "auth": "apiKey"},
|
|
830
|
+
{"name": "Lyft API", "description": "Ride sharing", "category": "Transportation", "link": "https://www.lyft.com/developers", "auth": "None"},
|
|
831
|
+
{"name": "Postmen", "description": "Shipping API", "category": "Transportation", "link": "https://docs.postmen.com/", "auth": "None"},
|
|
832
|
+
{"name": "Uber API", "description": "Ride sharing", "category": "Transportation", "link": "https://developer.uber.com/", "auth": "None"},
|
|
833
|
+
|
|
834
|
+
# === URL SHORTENERS ===
|
|
835
|
+
{"name": "Bitly API", "description": "URL shortening", "category": "Tools", "link": "http://dev.bitly.com/links.html", "auth": "None"},
|
|
836
|
+
{"name": "GoTiny", "description": "URL shortener", "category": "Tools", "link": "https://github.com/robvanbakel/gotiny-api", "auth": "None"},
|
|
837
|
+
{"name": "Is.gd", "description": "URL shortener", "category": "Tools", "link": "https://is.gd/developers.php", "auth": "None"},
|
|
838
|
+
{"name": "ShrtURI", "description": "URL shortening", "category": "Tools", "link": "https://shrturi.com/docs", "auth": "None"},
|
|
839
|
+
{"name": "Tiny.cc", "description": "URL shortener", "category": "Tools", "link": "https://tiny.cc/api-docs", "auth": "None"},
|
|
840
|
+
{"name": "Tiny.UID", "description": "URL shortening", "category": "Tools", "link": "https://tinyuid.com/docs", "auth": "None"},
|
|
841
|
+
{"name": "V.gd", "description": "URL shortener", "category": "Tools", "link": "https://v.gd/developers.php", "auth": "None"},
|
|
842
|
+
{"name": "Yourls", "description": "URL shortener", "category": "Tools", "link": "https://yourls.org/#API", "auth": "None"},
|
|
843
|
+
|
|
844
|
+
# === WEATHER ===
|
|
845
|
+
{"name": "AccuWeather", "description": "Weather forecasts", "category": "Weather", "link": "https://developer.accuweather.com/", "auth": "apiKey"},
|
|
846
|
+
{"name": "AerisWeather", "description": "Weather and imagery", "category": "Weather", "link": "https://www.aerisweather.com", "auth": "None"},
|
|
847
|
+
{"name": "BlueSky API", "description": "Weather data", "category": "Weather", "link": "https://blueskyapi.io/docs/api", "auth": "None"},
|
|
848
|
+
{"name": "Open-Meteo", "description": "Global weather API", "category": "Weather", "link": "https://open-meteo.com/en/docs", "auth": "None"},
|
|
849
|
+
{"name": "OpenWeatherMap", "description": "Weather data", "category": "Weather", "link": "http://openweathermap.org/api", "auth": "None"},
|
|
850
|
+
{"name": "Storm Glass", "description": "Marine weather", "category": "Weather", "link": "https://stormglass.io", "auth": "None"},
|
|
851
|
+
{"name": "Weather-API", "description": "Weather API", "category": "Weather", "link": "https://github.com/robertoduessmann/weather-api", "auth": "None"},
|
|
852
|
+
{"name": "Weatherbit", "description": "Weather data", "category": "Weather", "link": "https://www.weatherbit.io/api", "auth": "None"},
|
|
853
|
+
{"name": "Weatherstack", "description": "Real-time weather", "category": "Weather", "link": "https://weatherstack.com/documentation", "auth": "None"},
|
|
854
|
+
{"name": "Wunderground", "description": "Weather data", "category": "Weather", "link": "https://www.wunderground.com/weather/api/", "auth": "None"},
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
def format_apis():
|
|
858
|
+
"""Format APIs for output"""
|
|
859
|
+
formatted = []
|
|
860
|
+
seen_ids = set()
|
|
861
|
+
|
|
862
|
+
for api in APIS:
|
|
863
|
+
api_id = generate_id(api["name"])
|
|
864
|
+
if api_id in seen_ids:
|
|
865
|
+
continue
|
|
866
|
+
seen_ids.add(api_id)
|
|
867
|
+
|
|
868
|
+
formatted.append({
|
|
869
|
+
"id": api_id,
|
|
870
|
+
"name": api["name"],
|
|
871
|
+
"description": api["description"],
|
|
872
|
+
"category": api["category"],
|
|
873
|
+
"auth": api.get("auth", "Unknown"),
|
|
874
|
+
"https": True,
|
|
875
|
+
"cors": "unknown",
|
|
876
|
+
"link": api["link"],
|
|
877
|
+
"pricing": "unknown",
|
|
878
|
+
"keywords": [],
|
|
879
|
+
"source": "night-expansion-02-26"
|
|
880
|
+
})
|
|
881
|
+
|
|
882
|
+
return formatted
|
|
883
|
+
|
|
884
|
+
if __name__ == "__main__":
|
|
885
|
+
apis = format_apis()
|
|
886
|
+
|
|
887
|
+
with open(OUTPUT_PATH, 'w') as f:
|
|
888
|
+
json.dump(apis, f, indent=2)
|
|
889
|
+
|
|
890
|
+
print(f"Generated {len(apis)} APIs to {OUTPUT_PATH}")
|