{
  "meta": {
    "category": "entertainment",
    "label": "Entertainment",
    "icon": "🎵",
    "color": "#e879f9",
    "count": 226,
    "generated": "2026-03-30T23:25:37.764Z",
    "source": "https://apimap.dev"
  },
  "apis": [
    {
      "id": "spotify",
      "name": "Spotify Web API",
      "provider": "Spotify",
      "category": "entertainment",
      "description": "Search tracks, albums, artists, playlists, get audio features, control playback, and manage libraries.",
      "longDescription": "Spotify's Web API gives programmatic access to Spotify's catalog of 100M+ tracks. Search for any song, artist, album, or playlist; retrieve audio features (tempo, key, danceability); control playback on active devices; manage the user's library; follow artists; and create/modify playlists.",
      "color": "#1db954",
      "tags": [
        "music",
        "tracks",
        "playlists",
        "playback",
        "audio-features"
      ],
      "authType": "oauth2",
      "authDescription": "Use OAuth 2.0. Client credentials grant for catalog access; Authorization Code + PKCE for user data and playback control.",
      "authExample": "Authorization: Bearer BQC...",
      "baseUrl": "https://api.spotify.com/v1",
      "docsUrl": "https://developer.spotify.com/documentation/web-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "API access is free with a Spotify Developer account"
        },
        "tiers": [],
        "details": "Spotify API is free for all developers. Playback control requires users to have Spotify Premium. Extended Quota Mode requires approval."
      },
      "rateLimit": "180 requests/min (approx)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/search",
          "description": "Search tracks, albums, artists, playlists"
        },
        {
          "method": "GET",
          "path": "/tracks/{id}",
          "description": "Get track metadata"
        },
        {
          "method": "GET",
          "path": "/audio-features/{id}",
          "description": "Get audio analysis (tempo, key, energy)"
        },
        {
          "method": "GET",
          "path": "/recommendations",
          "description": "Get personalized track recommendations"
        },
        {
          "method": "GET",
          "path": "/me/player",
          "description": "Get current playback state"
        },
        {
          "method": "PUT",
          "path": "/me/player/play",
          "description": "Start or resume playback"
        },
        {
          "method": "POST",
          "path": "/users/{id}/playlists",
          "description": "Create a playlist"
        }
      ],
      "sampleRequest": "curl \"https://api.spotify.com/v1/search?q=Daft+Punk&type=artist&limit=1\" \\\n  -H \"Authorization: Bearer $SPOTIFY_ACCESS_TOKEN\"",
      "sampleResponse": "{\n  \"artists\": {\n    \"items\": [{\n      \"id\": \"4tZwfgrHOc3mvqYlEYSvVi\",\n      \"name\": \"Daft Punk\",\n      \"popularity\": 80,\n      \"followers\": {\"total\": 9842341},\n      \"genres\": [\"french house\", \"electronic\"],\n      \"images\": [{\"url\": \"https://i.scdn.co/image/...\", \"width\": 640}]\n    }]\n  }\n}",
      "scoreDepth": 86,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 73,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:51.105Z",
      "verifiedStatus": 401,
      "latencyMs": 707
    },
    {
      "id": "tmdb",
      "name": "TMDB API",
      "provider": "The Movie Database",
      "category": "entertainment",
      "description": "Comprehensive movie and TV metadata — cast, crew, ratings, trailers, posters, and streaming availability.",
      "longDescription": "The Movie Database (TMDB) provides a rich community-maintained database of movies, TV shows, people, and networks. Fetch movie and show metadata including cast & crew, genres, ratings, budget, revenue, backdrops, and trailers. Discover trending and top-rated titles, search across the full catalog, and check streaming availability (where to watch) for specific regions. Free for non-commercial use.",
      "color": "#01b4e4",
      "tags": [
        "movies",
        "tv-shows",
        "streaming",
        "metadata",
        "cast",
        "ratings",
        "posters"
      ],
      "authType": "bearer",
      "authDescription": "Pass your API Read Access Token as a Bearer token. Also supports a legacy api_key query parameter.",
      "authExample": "Authorization: Bearer eyJhbGc...",
      "baseUrl": "https://api.themoviedb.org/3",
      "docsUrl": "https://developer.themoviedb.org/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Unlimited requests for non-commercial use"
        },
        "tiers": [],
        "details": "TMDB API is free for non-commercial projects. Commercial use above certain scale requires a custom agreement. Attribution to TMDB is required."
      },
      "rateLimit": "50 requests/sec",
      "endpoints": [
        {
          "method": "GET",
          "path": "/movie/{movie_id}",
          "description": "Get full movie details including cast and crew"
        },
        {
          "method": "GET",
          "path": "/movie/popular",
          "description": "List currently popular movies"
        },
        {
          "method": "GET",
          "path": "/tv/{series_id}",
          "description": "Get TV show details and season list"
        },
        {
          "method": "GET",
          "path": "/search/multi",
          "description": "Search movies, TV shows, and people at once"
        },
        {
          "method": "GET",
          "path": "/trending/{media_type}/{time_window}",
          "description": "Trending movies or shows (day/week)"
        },
        {
          "method": "GET",
          "path": "/movie/{movie_id}/watch/providers",
          "description": "Streaming availability by country"
        }
      ],
      "sampleRequest": "curl \"https://api.themoviedb.org/3/movie/popular?language=en-US&page=1\" \\\n  -H \"Authorization: Bearer $TMDB_ACCESS_TOKEN\"",
      "sampleResponse": "{\n  \"page\": 1,\n  \"results\": [{\n    \"id\": 550,\n    \"title\": \"Fight Club\",\n    \"vote_average\": 8.433,\n    \"popularity\": 73.645,\n    \"release_date\": \"1999-10-15\",\n    \"overview\": \"A ticking-time-bomb insomniac and a slippery soap salesman...\",\n    \"poster_path\": \"/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg\"\n  }]\n}",
      "scoreDepth": 86,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 84,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:52.294Z",
      "verifiedStatus": 204,
      "latencyMs": 752
    },
    {
      "id": "rawg",
      "name": "RAWG Video Games API",
      "provider": "RAWG",
      "category": "entertainment",
      "description": "The largest video game database — metadata for 500,000+ games including ratings, genres, and screenshots.",
      "longDescription": "RAWG is the largest open video game database, covering 500,000+ games across 50+ platforms. The free API provides comprehensive metadata: game ratings, Metacritic scores, genres, developers, publishers, release dates, screenshots, trailers, parent platforms, and ESRB ratings. Supports discovery features like \"similar games\" and filtering by platform, genre, tag, and store availability.",
      "color": "#202020",
      "tags": [
        "games",
        "gaming",
        "metacritic",
        "playstation",
        "xbox",
        "pc",
        "ratings",
        "discovery"
      ],
      "authType": "api-key",
      "authDescription": "Pass your API key as the key query parameter. Register a free account at rawg.io to get a key.",
      "authExample": "?key=YOUR_API_KEY",
      "baseUrl": "https://api.rawg.io/api",
      "docsUrl": "https://rawg.io/apidocs",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Unlimited requests for non-commercial use"
        },
        "tiers": [],
        "details": "RAWG API is completely free for non-commercial projects. Commercial licensing contact is available on their site. Attribution required."
      },
      "rateLimit": "No documented limit (fair use)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/games",
          "description": "List and search games with filtering"
        },
        {
          "method": "GET",
          "path": "/games/{id}",
          "description": "Get full game details, ratings, and metadata"
        },
        {
          "method": "GET",
          "path": "/games/{id}/screenshots",
          "description": "Get screenshots for a game"
        },
        {
          "method": "GET",
          "path": "/genres",
          "description": "List all genres with game counts"
        },
        {
          "method": "GET",
          "path": "/platforms",
          "description": "List all platforms (PC, PS5, Xbox, etc.)"
        },
        {
          "method": "GET",
          "path": "/developers",
          "description": "List game developers with their titles"
        }
      ],
      "sampleRequest": "curl \"https://api.rawg.io/api/games?ordering=-rating&page_size=5&key=$RAWG_API_KEY\"",
      "sampleResponse": "{\n  \"count\": 857462,\n  \"results\": [{\n    \"id\": 3498,\n    \"name\": \"Grand Theft Auto V\",\n    \"rating\": 4.48,\n    \"metacritic\": 97,\n    \"released\": \"2013-09-17\",\n    \"platforms\": [{\"platform\": {\"name\": \"PC\"}}, {\"platform\": {\"name\": \"PlayStation 5\"}}],\n    \"genres\": [{\"name\": \"Action\"}, {\"name\": \"Adventure\"}]\n  }]\n}",
      "scoreDepth": 86,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 73,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:54.497Z",
      "verifiedStatus": 200,
      "latencyMs": 2954
    },
    {
      "id": "soundcloud",
      "name": "SoundCloud API",
      "provider": "SoundCloud",
      "category": "entertainment",
      "description": "Explore tracks, playlists, user profiles, and stream audio from the world's largest audio platform.",
      "longDescription": "The SoundCloud API provides access to SoundCloud's catalog of 300+ million tracks. Discover and search tracks, playlists, and artist profiles; retrieve track waveform data and stream URLs; read comments and likes; manage user libraries (with OAuth). The API is used for music discovery apps, DJ tools, podcast platforms, and social listening features.",
      "color": "#ff5500",
      "tags": [
        "music",
        "audio",
        "streaming",
        "tracks",
        "playlists",
        "podcasts",
        "discovery"
      ],
      "authType": "oauth2",
      "authDescription": "Use OAuth 2.0 for user-scoped actions or pass your client_id as a query parameter for public data. Register at soundcloud.com/you/apps.",
      "authExample": "?client_id=YOUR_CLIENT_ID\n# or OAuth: Authorization: Bearer OAUTH_TOKEN",
      "baseUrl": "https://api.soundcloud.com",
      "docsUrl": "https://developers.soundcloud.com/docs/api/reference",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "API access is free for registered apps"
        },
        "tiers": [],
        "details": "The SoundCloud API is free for developers. Rate limits apply. Commercial use and high-volume streaming may require a partnership agreement."
      },
      "rateLimit": "Undisclosed (fair use policy)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/tracks",
          "description": "Search and discover tracks"
        },
        {
          "method": "GET",
          "path": "/tracks/{id}",
          "description": "Get track metadata, waveform, and stream URL"
        },
        {
          "method": "GET",
          "path": "/users/{id}",
          "description": "Get user/artist profile info and follower count"
        },
        {
          "method": "GET",
          "path": "/users/{id}/tracks",
          "description": "List all tracks uploaded by a user"
        },
        {
          "method": "GET",
          "path": "/playlists/{id}",
          "description": "Get playlist details and track list"
        },
        {
          "method": "GET",
          "path": "/me",
          "description": "Get the authenticated user's profile (OAuth)"
        }
      ],
      "sampleRequest": "curl \"https://api.soundcloud.com/tracks?q=lo-fi+hip+hop&limit=5&client_id=$SC_CLIENT_ID\"",
      "sampleResponse": "[{\n  \"id\": 123456789,\n  \"title\": \"Lofi Study Beats\",\n  \"user\": { \"username\": \"ChillBeats\" },\n  \"playback_count\": 1234567,\n  \"likes_count\": 8921,\n  \"duration\": 7200000,\n  \"genre\": \"Hip-hop & Rap\"\n}]",
      "scoreDepth": 86,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 73,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:53.836Z",
      "verifiedStatus": 429,
      "latencyMs": 834
    },
    {
      "id": "lastfm",
      "name": "Last.fm API",
      "provider": "Last.fm",
      "category": "entertainment",
      "description": "Get music metadata, artist bios, top tracks, tags, and personalized listening stats from Last.fm.",
      "longDescription": "The Last.fm API provides rich music metadata from a 20+ year database of artist information, track metadata, album art, fan-curated tags, and music recommendations. Retrieve top tracks and albums for any artist, get personalized music stats (what users are listening to now), find similar artists, explore music recommendations by tag, and scrobble (record) user listening history. Loved by music apps, recommendation engines, and audio players.",
      "color": "#d51007",
      "tags": [
        "music",
        "artists",
        "recommendations",
        "scrobbling",
        "metadata",
        "charts",
        "discovery"
      ],
      "authType": "api-key",
      "authDescription": "Pass your API key as the api_key query parameter. User-write operations require OAuth-style session tokens. Register at last.fm/api/account/create.",
      "authExample": "?api_key=YOUR_API_KEY&format=json",
      "baseUrl": "https://ws.audioscrobbler.com/2.0",
      "docsUrl": "https://www.last.fm/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Unlimited requests (rate limits apply)"
        },
        "tiers": [],
        "details": "The Last.fm API is free for non-commercial use. Commercial use requires a license agreement. Fair-use rate limits are enforced but not publicly published."
      },
      "rateLimit": "5 requests/sec (unofficial fair-use limit)",
      "endpoints": [
        {
          "method": "GET",
          "path": "?method=artist.getinfo",
          "description": "Get artist biography, tags, and listener stats"
        },
        {
          "method": "GET",
          "path": "?method=artist.getSimilar",
          "description": "Get artists similar to a given artist"
        },
        {
          "method": "GET",
          "path": "?method=artist.getTopTracks",
          "description": "Get the most popular tracks for an artist"
        },
        {
          "method": "GET",
          "path": "?method=chart.getTopArtists",
          "description": "Get the top artists chart globally"
        },
        {
          "method": "GET",
          "path": "?method=tag.getTopTracks",
          "description": "Get top tracks for a genre tag"
        },
        {
          "method": "GET",
          "path": "?method=user.getRecentTracks",
          "description": "Get a user's scrobble history"
        }
      ],
      "sampleRequest": "curl \"https://ws.audioscrobbler.com/2.0/?method=artist.getTopTracks&artist=Radiohead&api_key=$LASTFM_API_KEY&format=json&limit=5\"",
      "sampleResponse": "{\n  \"toptracks\": {\n    \"track\": [{\n      \"name\": \"Creep\",\n      \"playcount\": \"71234567\",\n      \"listeners\": \"3456789\",\n      \"artist\": { \"name\": \"Radiohead\" },\n      \"url\": \"https://www.last.fm/music/Radiohead/_/Creep\"\n    }]\n  }\n}",
      "scoreDepth": 86,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 73,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:53.674Z",
      "verifiedStatus": 400,
      "latencyMs": 627
    },
    {
      "id": "youtube",
      "name": "YouTube Data API",
      "provider": "Google",
      "category": "entertainment",
      "description": "Search videos, channels, and playlists. Get statistics, captions, comments, and live stream data.",
      "longDescription": "The YouTube Data API v3 lets you search across YouTube's 800M videos, retrieve channel and video statistics, fetch video captions and transcripts, read and post comments, manage playlists, and work with live broadcasts. Essential for any content discovery or analytics tool.",
      "color": "#ff0000",
      "tags": [
        "videos",
        "search",
        "channels",
        "comments",
        "live-streams"
      ],
      "authType": "api-key",
      "authDescription": "Use an API key for public data access. Use OAuth 2.0 for user-specific actions like uploading or posting comments.",
      "authExample": "?key=AIzaSy...",
      "baseUrl": "https://www.googleapis.com/youtube/v3",
      "docsUrl": "https://developers.google.com/youtube/v3",
      "hasFreeTier": true,
      "pricing": {
        "model": "pay-as-you-go",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "10,000 units/day"
        },
        "tiers": [],
        "details": "Search costs 100 units. Video list: 1 unit. Comments list: 1 unit. Upload: 1,600 units. Additional quota: $0 (apply for increase via Google)."
      },
      "rateLimit": "10,000 units/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/search",
          "description": "Search videos, channels, and playlists"
        },
        {
          "method": "GET",
          "path": "/videos",
          "description": "Get video details and statistics"
        },
        {
          "method": "GET",
          "path": "/channels",
          "description": "Get channel details and subscriber count"
        },
        {
          "method": "GET",
          "path": "/commentThreads",
          "description": "List top-level comment threads"
        },
        {
          "method": "GET",
          "path": "/captions",
          "description": "List or download video captions"
        },
        {
          "method": "GET",
          "path": "/playlistItems",
          "description": "List items in a playlist"
        }
      ],
      "sampleRequest": "curl \"https://www.googleapis.com/youtube/v3/search?part=snippet&q=machine+learning+tutorial&type=video&maxResults=3&key=$YOUTUBE_API_KEY\"",
      "sampleResponse": "{\n  \"kind\": \"youtube#searchListResponse\",\n  \"pageInfo\": {\"totalResults\": 1000000},\n  \"items\": [{\n    \"id\": {\"kind\": \"youtube#video\", \"videoId\": \"aircAruvnKk\"},\n    \"snippet\": {\n      \"title\": \"Neural Networks - 3Blue1Brown\",\n      \"channelTitle\": \"3Blue1Brown\",\n      \"description\": \"But what is a neural network?\",\n      \"publishedAt\": \"2017-10-05T19:46:01Z\"\n    }\n  }]\n}",
      "scoreDepth": 78,
      "scoreLatency": 38,
      "scorePricing": 75,
      "score": 65,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:54.141Z",
      "verifiedStatus": 404,
      "latencyMs": 793
    },
    {
      "id": "api-video",
      "name": "api.video",
      "provider": "api.video",
      "category": "entertainment",
      "description": "api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes.",
      "longDescription": "api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes.",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "api"
      ],
      "authType": "bearer",
      "authDescription": "Bearer token in the Authorization header",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://ws.api.video",
      "docsUrl": "https://ws.api.video",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 30-day trial. Pay-as-you-go from $0.0025/min storage. Starter $49/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/account",
          "description": "Show account"
        },
        {
          "method": "GET",
          "path": "/analytics/live-streams/{liveStreamId}",
          "description": "List live stream player sessions"
        },
        {
          "method": "GET",
          "path": "/analytics/sessions/{sessionId}/events",
          "description": "List player session events"
        },
        {
          "method": "GET",
          "path": "/analytics/videos/{videoId}",
          "description": "List video player sessions"
        },
        {
          "method": "POST",
          "path": "/auth/api-key",
          "description": "Authenticate"
        },
        {
          "method": "POST",
          "path": "/auth/refresh",
          "description": "Refresh token"
        },
        {
          "method": "GET",
          "path": "/live-streams",
          "description": "List all live streams"
        },
        {
          "method": "POST",
          "path": "/live-streams",
          "description": "Create live stream"
        }
      ],
      "sampleRequest": "curl -X GET 'https://ws.api.video/account' \\\n  -H 'Authorization: Bearer YOUR_TOKEN'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:55.783Z",
      "verifiedStatus": 404,
      "latencyMs": 1621
    },
    {
      "id": "radio-music-services",
      "name": "Radio & Music Services",
      "provider": "Radio & Music Services",
      "category": "entertainment",
      "description": "We encapsulate Radio & Music business logic for iPlayer Radio and BBC Music products on all platforms. We add value by reliably providing the right blend of metadata needed by clients.",
      "longDescription": "We encapsulate Radio & Music business logic for iPlayer Radio and BBC Music products on all platforms. We add value by reliably providing the right blend of metadata needed by clients.",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "bbc"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://rms.api.bbc.co.uk/",
      "docsUrl": "https://rms.api.bbc.co.uk/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/broadcasts",
          "description": "Broadcasts"
        },
        {
          "method": "GET",
          "path": "/broadcasts/latest",
          "description": "Latest Broadcasts"
        },
        {
          "method": "GET",
          "path": "/broadcasts/{pid}",
          "description": "Broadcasts by PID"
        },
        {
          "method": "GET",
          "path": "/categories",
          "description": "List of categories"
        },
        {
          "method": "GET",
          "path": "/categories/{id}",
          "description": "Category by ID"
        },
        {
          "method": "GET",
          "path": "/collections/{pid}/members",
          "description": "Collection Members"
        },
        {
          "method": "GET",
          "path": "/experience/homepage",
          "description": "Homepage Experience"
        },
        {
          "method": "GET",
          "path": "/music/popular/artists",
          "description": "Popular Artists"
        }
      ],
      "sampleRequest": "curl -X GET 'https://rms.api.bbc.co.uk//broadcasts' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 68,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:55.891Z",
      "verifiedStatus": 403,
      "latencyMs": 1321
    },
    {
      "id": "betfair-exchange-streaming",
      "name": "Betfair: Exchange Streaming API",
      "provider": "Betfair: Exchange Streaming",
      "category": "entertainment",
      "description": "API to receive streamed updates. This is an ssl socket connection of CRLF delimited json messages (see RequestMessage & ResponseMessage)",
      "longDescription": "API to receive streamed updates. This is an ssl socket connection of CRLF delimited json messages (see RequestMessage & ResponseMessage)",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "betfair"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://stream-api.betfair.com:443/api",
      "docsUrl": "https://developer.betfair.com/support/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/request",
          "description": "This is a socket protocol delimited by CRLF (not http)"
        }
      ],
      "sampleRequest": "curl -X GET 'http://stream-api.betfair.com:443/api/request' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 28,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 20,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:17:55.918Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "bungie-net",
      "name": "Bungie.Net API",
      "provider": "Bungie.Net",
      "category": "entertainment",
      "description": "Bungie.net API provides access to Destiny 2 game data including player profiles, character stats, inventory, activities, clan management, and real-time game metrics.",
      "longDescription": "These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality.",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "gaming",
        "destiny",
        "bungie"
      ],
      "authType": "api-key",
      "authDescription": "API key in the X-API-Key request header",
      "authExample": "X-API-Key: YOUR_BUNGIE_API_KEY",
      "baseUrl": "https://www.bungie.net/Platform",
      "docsUrl": "https://github.com/Bungie-net/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "free",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 25000,
          "unit": "requests",
          "period": "day"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "25,000 req/day — completely free"
          }
        ],
        "details": "Completely free. Default: 25,000 requests/day per API key. Throttle limit: 250 requests/10-sec window."
      },
      "rateLimit": "250 requests/10 seconds; 25,000/day",
      "endpoints": [
        {
          "method": "GET",
          "path": "/App/ApiUsage/{applicationId}/",
          "description": "Get API usage by application for time frame specified. You can go as far back as"
        },
        {
          "method": "GET",
          "path": "/App/FirstParty/",
          "description": "Get list of applications created by Bungie."
        },
        {
          "method": "GET",
          "path": "/CommunityContent/Get/{sort}/{mediaFilter}/{page}/",
          "description": "Returns community content."
        },
        {
          "method": "GET",
          "path": "/Content/GetContentById/{id}/{locale}/",
          "description": "Returns a content item referenced by id"
        },
        {
          "method": "GET",
          "path": "/Content/GetContentByTagAndType/{tag}/{type}/{locale}/",
          "description": "Returns the newest item that matches a given tag and Content Type."
        },
        {
          "method": "GET",
          "path": "/Content/GetContentType/{type}/",
          "description": "Gets an object describing a particular variant of content."
        },
        {
          "method": "GET",
          "path": "/Content/Rss/NewsArticles/{pageToken}/",
          "description": "Returns a JSON string response that is the RSS feed for news articles."
        },
        {
          "method": "GET",
          "path": "/Content/Search/{locale}/",
          "description": "Gets content based on querystring information passed in. Provides basic search a"
        }
      ],
      "sampleRequest": "curl -X GET 'https://www.bungie.net/Platform/App/ApiUsage/{applicationId}/' \\\n  -H 'X-API-Key: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 78,
      "scoreLatency": 40,
      "scorePricing": 100,
      "score": 73,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:57.940Z",
      "verifiedStatus": 200,
      "latencyMs": 2467
    },
    {
      "id": "api-clarify-io",
      "name": "api.clarify.io",
      "provider": "api.clarify.io",
      "category": "entertainment",
      "description": "The API to Search and Understand Audio & Video Data.",
      "longDescription": "The API to Search and Understand Audio & Video Data.",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "clarify"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.clarify.io/",
      "docsUrl": "https://api.clarify.io/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/v1/bundles",
          "description": "List bundles"
        },
        {
          "method": "POST",
          "path": "/v1/bundles",
          "description": "Create a bundle"
        },
        {
          "method": "DELETE",
          "path": "/v1/bundles/{bundle_id}",
          "description": "Delete a bundle"
        },
        {
          "method": "GET",
          "path": "/v1/bundles/{bundle_id}",
          "description": "Get a bundle"
        },
        {
          "method": "PUT",
          "path": "/v1/bundles/{bundle_id}",
          "description": "Update a bundle"
        },
        {
          "method": "GET",
          "path": "/v1/bundles/{bundle_id}/insights",
          "description": "Get bundle insights"
        },
        {
          "method": "POST",
          "path": "/v1/bundles/{bundle_id}/insights",
          "description": "Request an insight to be run"
        },
        {
          "method": "GET",
          "path": "/v1/bundles/{bundle_id}/insights/{insight_id}",
          "description": "Get bundle insight"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.clarify.io//v1/bundles' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 61,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:17:57.650Z",
      "verifiedStatus": 404,
      "latencyMs": 1520
    },
    {
      "id": "contentgroove",
      "name": "ContentGroove API",
      "provider": "ContentGroove",
      "category": "entertainment",
      "description": "Overview\n\nThe ContentGroove Developer API enables you to add the power of ContentGroove's video AI to your own applications and workflows.\n\nWebhooks are a way for ContentGroove to send video information\nto your application, to update your system and/or trigger other business processes.\n\nYou can us",
      "longDescription": "Overview\n\nThe ContentGroove Developer API enables you to add the power of ContentGroove's video AI to your own applications and workflows.\n\nWebhooks are a way for ContentGroove to send video information\nto your application, to update your system and/or trigger other business processes.\n\nYou can us",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "contentgroove"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Authorization)",
      "authExample": "Authorization: YOUR_API_KEY",
      "baseUrl": "https://api.contentgroove.com",
      "docsUrl": "https://api.contentgroove.com",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid AI video clipping. Starter $29/mo, Professional $79/mo, Business $149/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/api/v1/clips",
          "description": "list clips"
        },
        {
          "method": "POST",
          "path": "/api/v1/clips",
          "description": "create clip"
        },
        {
          "method": "DELETE",
          "path": "/api/v1/clips/{id}",
          "description": "delete clip"
        },
        {
          "method": "GET",
          "path": "/api/v1/clips/{id}",
          "description": "show clip"
        },
        {
          "method": "PUT",
          "path": "/api/v1/clips/{id}",
          "description": "update clip"
        },
        {
          "method": "GET",
          "path": "/api/v1/direct_uploads",
          "description": "prepare presigned upload url"
        },
        {
          "method": "GET",
          "path": "/api/v1/medias",
          "description": "list medias"
        },
        {
          "method": "POST",
          "path": "/api/v1/medias",
          "description": "create media"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.contentgroove.com/api/v1/clips' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 37,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:17:57.801Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "etmdb-rest-api-v1",
      "name": "EtMDB REST API v1",
      "provider": "EtMDB REST API v1",
      "category": "entertainment",
      "description": "The Ethiopian Movie Database",
      "longDescription": "The Ethiopian Movie Database",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "etmdb"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 — obtain an access token via the authorization flow",
      "authExample": "Authorization: Bearer <access_token>",
      "baseUrl": "https://etmdb.com",
      "docsUrl": "https://etmdb.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Ethiopian Movie Database REST API; community maintained."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/api/v1/cinema-detail/search/{cinema_name}",
          "description": "Return cinema details search result"
        },
        {
          "method": "GET",
          "path": "/api/v1/cinema-schedule/search/{movie_title}",
          "description": "Return cinema schedule search result"
        },
        {
          "method": "GET",
          "path": "/api/v1/cinema-schedule/searchall/{param}",
          "description": "Return cinema schedule search result"
        },
        {
          "method": "GET",
          "path": "/api/v1/cinema-shedule-showtime/search/{movie_title}",
          "description": "Return cinema schedule and showtime search result"
        },
        {
          "method": "GET",
          "path": "/api/v1/cinema-shedule-showtime/searchall/{param}",
          "description": "Return cinema schedule and showtime search result"
        },
        {
          "method": "GET",
          "path": "/api/v1/cinema/search/{id}",
          "description": "Return cinema search result"
        },
        {
          "method": "GET",
          "path": "/api/v1/company-credits/search/{movie_title}",
          "description": "Return company credits search result"
        },
        {
          "method": "GET",
          "path": "/api/v1/company-credits/searchall/{param}",
          "description": "Return company credits search result"
        }
      ],
      "sampleRequest": "curl -X GET 'https://etmdb.com/api/v1/cinema-detail/search/{cinema_name}' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 57,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:00.469Z",
      "verifiedStatus": 200,
      "latencyMs": 2543
    },
    {
      "id": "hydra-movies",
      "name": "Hydra Movies",
      "provider": "Hydra Movies",
      "category": "entertainment",
      "description": "Hydra Movies is a streaming service that holds information on thousands of popular movies. \n\nThe Hydra Movies API gives you access to their entire collection of full movies.\n\nEach film returned provides you with the following data:\n\n- Movie Title\n- Movie Release Year\n- Gen",
      "longDescription": "Hydra Movies is a streaming service that holds information on thousands of popular movies. \n\nThe Hydra Movies API gives you access to their entire collection of full movies.\n\nEach film returned provides you with the following data:\n\n- Movie Title\n- Movie Release Year\n- Gen",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "hydramovies"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://hydramovies.com/api-v2/%3Fsource=http:/hydramovies.com/api-v2",
      "docsUrl": "https://hydramovies.com/api-v2/%3Fsource=http:/hydramovies.com/api-v2",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/current-Movie-Data.csv&imdb_id={IMDBid}",
          "description": "getMovieByIMDBid"
        },
        {
          "method": "GET",
          "path": "/current-Movie-Data.csv&movie_year={MovieYear}",
          "description": "getMovieByYear"
        }
      ],
      "sampleRequest": "curl -X GET 'https://hydramovies.com/api-v2/%3Fsource=http:/hydramovies.com/api-v2/current-Movie-Data.csv&imdb_id={IMDBid}' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 44,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:04.033Z",
      "verifiedStatus": 429,
      "latencyMs": 1576
    },
    {
      "id": "json2video",
      "name": "JSON2Video API",
      "provider": "JSON2Video",
      "category": "entertainment",
      "description": "Create and edit awesome videos programmatically",
      "longDescription": "Create and edit awesome videos programmatically",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "json2video"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.json2video.com/v2",
      "docsUrl": "https://api.json2video.com/v2",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/movies",
          "description": "Get the status of your movies"
        },
        {
          "method": "POST",
          "path": "/movies",
          "description": "Create a new movie"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.json2video.com/v2/movies' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 29,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 29,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:04.576Z",
      "verifiedStatus": 404,
      "latencyMs": 1308
    },
    {
      "id": "neows-near-earth-object-web-service",
      "name": "NeoWs - (Near Earth Object Web Service)",
      "provider": "NeoWs - (Near Earth Object Web Service)",
      "category": "entertainment",
      "description": "A web service for near earth objects. All the data is from the <a href=\"http://neo.jpl.nasa.gov/\" target=\"_blank\">NASA JPL Asteroid team</a>. \n\n \n\nNeoWs is proud to power AsteroidTracker on <a href=\"https://itunes.apple.com/us/app/asteroid-tracker/id689684901?mt=8\" target=\"_blank\">iOS</a> and <a hre",
      "longDescription": "A web service for near earth objects. All the data is from the <a href=\"http://neo.jpl.nasa.gov/\" target=\"_blank\">NASA JPL Asteroid team</a>. \n\n \n\nNeoWs is proud to power AsteroidTracker on <a href=\"https://itunes.apple.com/us/app/asteroid-tracker/id689684901?mt=8\" target=\"_blank\">iOS</a> and <a hre",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "neowsapp"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://www.neowsapp.com/",
      "docsUrl": "http://www.neowsapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/rest/v1/feed",
          "description": "Find Near Earth Objects by date"
        },
        {
          "method": "GET",
          "path": "/rest/v1/feed/today",
          "description": "Find Near Earth Objects for today"
        },
        {
          "method": "GET",
          "path": "/rest/v1/neo/browse",
          "description": "Browse the Near Earth Objects service"
        },
        {
          "method": "GET",
          "path": "/rest/v1/neo/sentry",
          "description": "Retrieve Sentry (Impact Risk ) Near Earth Objects"
        },
        {
          "method": "GET",
          "path": "/rest/v1/neo/sentry/{asteroid_id}",
          "description": "Retrieve Sentry (Impact Risk ) Near Earth Objectby ID "
        },
        {
          "method": "GET",
          "path": "/rest/v1/neo/{asteroid_id}",
          "description": "Find Near Earth Objects by id"
        },
        {
          "method": "GET",
          "path": "/rest/v1/stats",
          "description": "Get the Near Earth Object data set totals"
        }
      ],
      "sampleRequest": "curl -X GET 'http://www.neowsapp.com//rest/v1/feed' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:06.545Z",
      "verifiedStatus": 401,
      "latencyMs": 1719
    },
    {
      "id": "pandascore-rest-api-for-all-videogames",
      "name": "PandaScore REST API for All Videogames",
      "provider": "PandaScore REST API for All Videogames",
      "category": "entertainment",
      "description": "Introduction\n\nWhether you're looking to build an official Pandascore integration for your service, or you just want to build something awesome, we can help you get started.\n\nThe API works over the HTTPS protocol, and is accessed from the api.pandascore.co domain.\n\n- The current endpoin",
      "longDescription": "Introduction\n\nWhether you're looking to build an official Pandascore integration for your service, or you just want to build something awesome, we can help you get started.\n\nThe API works over the HTTPS protocol, and is accessed from the api.pandascore.co domain.\n\n- The current endpoin",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "pandascore"
      ],
      "authType": "bearer",
      "authDescription": "Bearer token in the Authorization header",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.pandascore.co/",
      "docsUrl": "https://api.pandascore.co/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 100 req/hour. Standard $59/mo, Pro $199/mo. Esports data for 20+ games."
      },
      "rateLimit": "100 req/hour (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/additions",
          "description": "List additions"
        },
        {
          "method": "GET",
          "path": "/changes",
          "description": "List changes"
        },
        {
          "method": "GET",
          "path": "/deletions",
          "description": "List deletions"
        },
        {
          "method": "GET",
          "path": "/incidents",
          "description": "List changes, additions and deletions"
        },
        {
          "method": "GET",
          "path": "/leagues",
          "description": "List leagues"
        },
        {
          "method": "GET",
          "path": "/leagues/{league_id_or_slug}",
          "description": "Get a league"
        },
        {
          "method": "GET",
          "path": "/leagues/{league_id_or_slug}/matches",
          "description": "Get matches for a league"
        },
        {
          "method": "GET",
          "path": "/leagues/{league_id_or_slug}/matches/past",
          "description": "Get past matches for league"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.pandascore.co//additions' \\\n  -H 'Authorization: Bearer YOUR_TOKEN'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 49,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:07.927Z",
      "verifiedStatus": 200,
      "latencyMs": 2004
    },
    {
      "id": "fortnite-rest",
      "name": "FORTNITE REST API",
      "provider": "FORTNITE REST",
      "category": "entertainment",
      "description": "REST API about Fortnite game",
      "longDescription": "REST API about Fortnite game",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "skynewz-api-fortnite"
      ],
      "authType": "api-key",
      "authDescription": "API key in the request header (Authorization)",
      "authExample": "Authorization: YOUR_API_KEY",
      "baseUrl": "https://skynewz-api-fortnite.herokuapp.com/api",
      "docsUrl": "https://skynewz-api-fortnite.herokuapp.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Fortnite-API.com key. Unofficial Fortnite stats and cosmetics API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/check",
          "description": "Get Fortnite game status"
        },
        {
          "method": "GET",
          "path": "/news",
          "description": "Get Fortnite News"
        },
        {
          "method": "POST",
          "path": "/oauth/token",
          "description": "Get a Bearer token"
        },
        {
          "method": "GET",
          "path": "/pve/info",
          "description": "Get Fortnite PVE Info (storm, etc)"
        },
        {
          "method": "GET",
          "path": "/pve/user/{username}",
          "description": "Get PVE Stat by given username"
        },
        {
          "method": "GET",
          "path": "/stats/id/{plateform}/{id}",
          "description": "Get user's stats by user id"
        },
        {
          "method": "GET",
          "path": "/stats/{plateform}/{username}",
          "description": "Get user's stats by username"
        },
        {
          "method": "GET",
          "path": "/store",
          "description": "Get Fortnite Store"
        }
      ],
      "sampleRequest": "curl -X GET 'https://skynewz-api-fortnite.herokuapp.com/api/check' \\\n  -H 'Authorization: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 57,
      "scoreLatency": 10,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:15.096Z",
      "verifiedStatus": 404,
      "latencyMs": 6913
    },
    {
      "id": "synq-video",
      "name": "SYNQ Video",
      "provider": "SYNQ Video",
      "category": "entertainment",
      "description": "* Sign up for a developer API key!\n* SYNQ API Guide",
      "longDescription": "* Sign up for a developer API key!\n* SYNQ API Guide",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "synq"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.synq.fm/v1",
      "docsUrl": "https://api.synq.fm/v1",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "POST",
          "path": "/video/create",
          "description": "Create a new video, optionally setting some metadata fields."
        },
        {
          "method": "POST",
          "path": "/video/details",
          "description": "Return details about a video."
        },
        {
          "method": "POST",
          "path": "/video/query",
          "description": "Perform a JavaScript query to return video objects matching any desired criteria."
        },
        {
          "method": "POST",
          "path": "/video/stream",
          "description": "Returns urls for streaming."
        },
        {
          "method": "POST",
          "path": "/video/update",
          "description": "Update a video's metadata."
        },
        {
          "method": "POST",
          "path": "/video/upload",
          "description": "Return parameters needed for uploading a video file."
        },
        {
          "method": "POST",
          "path": "/video/uploader",
          "description": "Return embeddable url to an uploader widget"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.synq.fm/v1/video/create' \\\n  -H '# No auth required'",
      "sampleResponse": "{}",
      "scoreDepth": 61,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 33,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:17.741Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "trakt",
      "name": "Trakt API",
      "provider": "Trakt",
      "category": "entertainment",
      "description": "At Trakt, we collect lots of interesting information about what tv shows and movies everyone is watching. Part of the fun with such data is making it available for anyone to mash up and use on their own site or app. The Trakt API was made just for this purpose. It is very easy to use, you basically",
      "longDescription": "At Trakt, we collect lots of interesting information about what tv shows and movies everyone is watching. Part of the fun with such data is making it available for anyone to mash up and use on their own site or app. The Trakt API was made just for this purpose. It is very easy to use, you basically",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "trakt"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 — obtain an access token via the authorization flow",
      "authExample": "Authorization: Bearer <access_token>",
      "baseUrl": "https://api.trakt.tv",
      "docsUrl": "https://api.trakt.tv",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Trakt account. Movie/TV tracking and discovery; no paid API tiers."
      },
      "rateLimit": "1,000 req/5min (OAuth apps)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/calendars/all/dvd/{start_date}/{days}",
          "description": "Get DVD releases"
        },
        {
          "method": "GET",
          "path": "/calendars/all/movies/{start_date}/{days}",
          "description": "Get movies"
        },
        {
          "method": "GET",
          "path": "/calendars/all/shows/new/{start_date}/{days}",
          "description": "Get new shows"
        },
        {
          "method": "GET",
          "path": "/calendars/all/shows/premieres/{start_date}/{days}",
          "description": "Get season premieres"
        },
        {
          "method": "GET",
          "path": "/calendars/all/shows/{start_date}/{days}",
          "description": "Get shows"
        },
        {
          "method": "GET",
          "path": "/calendars/my/dvd/{start_date}/{days}",
          "description": "Get DVD releases"
        },
        {
          "method": "GET",
          "path": "/calendars/my/movies/{start_date}/{days}",
          "description": "Get movies"
        },
        {
          "method": "GET",
          "path": "/calendars/my/shows/new/{start_date}/{days}",
          "description": "Get new shows"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.trakt.tv/calendars/all/dvd/{start_date}/{days}' \\\n  -H 'Authorization: Bearer <access_token>'",
      "sampleResponse": "{}",
      "scoreDepth": 72,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:20.116Z",
      "verifiedStatus": 403,
      "latencyMs": 2375
    },
    {
      "id": "wowza-streaming-cloud-rest-api-reference",
      "name": "Wowza Streaming Cloud REST API Reference Documentation",
      "provider": "Wowza Streaming Cloud REST API Reference Documentation",
      "category": "entertainment",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "About the REST API\n\nThe Wowza Streaming Cloud<sup>TM</sup> REST API (application programming interface) offers complete programmatic control over live streams, transcoders, stream sources, and stream targets. Anything you can do in the Wowza Streaming Cloud UI can also be achieved by making HTTP-",
      "color": "#f97316",
      "tags": [
        "maps",
        "entertainment",
        "payments",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://api-sandbox.cloud.wowza.com/api/v1",
      "docsUrl": "https://www.wowza.com/contact",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/api/v1/specs",
          "description": "Fetch Swagger information"
        },
        {
          "method": "GET",
          "path": "/live_streams",
          "description": "Fetch all live streams"
        },
        {
          "method": "POST",
          "path": "/live_streams",
          "description": "Create a live stream"
        },
        {
          "method": "DELETE",
          "path": "/live_streams/{id}",
          "description": "Delete a live stream"
        },
        {
          "method": "GET",
          "path": "/live_streams/{id}",
          "description": "Fetch a live stream"
        },
        {
          "method": "PATCH",
          "path": "/live_streams/{id}",
          "description": "Update a live stream"
        },
        {
          "method": "PUT",
          "path": "/live_streams/{id}/regenerate_connection_code",
          "description": "Regenerate the connection code for a live stream"
        },
        {
          "method": "PUT",
          "path": "/live_streams/{id}/reset",
          "description": "Reset a live stream"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api-sandbox.cloud.wowza.com/api/v1/api/v1/specs' \\\n  -H 'wsc-access-key: YOUR_API_KEY'",
      "sampleResponse": "{}",
      "scoreDepth": 91,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 63,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:25.480Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "vimeo",
      "name": "Vimeo",
      "provider": "Vimeo",
      "category": "entertainment",
      "description": "Video hosting platform API providing access to videos, channels, groups, categories, and user data with full upload and management capabilities.",
      "longDescription": "Video hosting platform API providing access to videos, channels, groups, categories, and user data with full upload and management capabilities.",
      "color": "#1ab7ea",
      "tags": [
        "entertainment",
        "video",
        "media"
      ],
      "authType": "bearer",
      "authDescription": "Bearer token in the Authorization header",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.vimeo.com",
      "docsUrl": "https://developer.vimeo.com/api/reference",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 500,
          "unit": "MB upload",
          "period": "week",
          "note": "5 GB total storage"
        },
        "tiers": [
          {
            "name": "Free",
            "monthlyCents": 0,
            "included": "500 MB/week, 5 GB total"
          },
          {
            "name": "Starter",
            "monthlyCents": 700,
            "included": "Unlimited uploads, 60 GB storage"
          },
          {
            "name": "Standard",
            "monthlyCents": 2000,
            "included": "Analytics, privacy controls, 1 TB"
          },
          {
            "name": "Advanced",
            "monthlyCents": 6500,
            "included": "White label, 5 TB storage"
          }
        ],
        "details": "Free: 500MB/week, 5GB total. Starter: $7/mo. Standard: $20/mo. Advanced: $65/mo. API requires at least Starter."
      },
      "rateLimit": "Varies by plan; throttled per token",
      "endpoints": [
        {
          "method": "GET",
          "path": "/categories",
          "description": "Get all categories"
        },
        {
          "method": "GET",
          "path": "/categories/{category}/videos",
          "description": "Get all videos in a category"
        },
        {
          "method": "GET",
          "path": "/channels",
          "description": "Get all channels"
        },
        {
          "method": "GET",
          "path": "/me",
          "description": "Get the authenticated user"
        },
        {
          "method": "GET",
          "path": "/me/videos",
          "description": "Get all videos for the authenticated user"
        },
        {
          "method": "POST",
          "path": "/me/videos",
          "description": "Upload a video"
        },
        {
          "method": "GET",
          "path": "/videos/{video_id}",
          "description": "Get a specific video"
        },
        {
          "method": "PATCH",
          "path": "/videos/{video_id}",
          "description": "Edit a video's metadata"
        }
      ],
      "sampleRequest": "curl -X GET 'https://api.vimeo.com/me/videos' \\\n  -H 'Authorization: Bearer YOUR_TOKEN'",
      "sampleResponse": "{\"total\":5,\"page\":1,\"per_page\":25,\"data\":[{\"uri\":\"/videos/123\",\"name\":\"My Video\",\"description\":\"...\"}]}",
      "scoreDepth": 70,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 61,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:47.377Z",
      "verifiedStatus": 401,
      "latencyMs": 2327
    },
    {
      "id": "omdb",
      "name": "OMDb API",
      "provider": "OMDb",
      "category": "entertainment",
      "description": "The Open Movie Database API — a free web service to obtain movie, series, and episode information including ratings, plot, cast, and poster images.",
      "longDescription": "The Open Movie Database API — a free web service to obtain movie, series, and episode information including ratings, plot, cast, and poster images.",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "movies",
        "tv",
        "metadata"
      ],
      "authType": "api-key",
      "authDescription": "API key as a query parameter (apikey)",
      "authExample": "GET /?apikey=YOUR_KEY&t=Inception",
      "baseUrl": "https://www.omdbapi.com",
      "docsUrl": "https://www.omdbapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "1,000 requests/day on free tier"
        },
        "tiers": [],
        "details": "Free tier with daily limit; Patron plans at $1–$5/month for higher quotas."
      },
      "rateLimit": "1,000 requests/day (free tier)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/?t={title}",
          "description": "Search movie by title"
        },
        {
          "method": "GET",
          "path": "/?i={imdbID}",
          "description": "Search by IMDb ID"
        },
        {
          "method": "GET",
          "path": "/?s={search}",
          "description": "Search movies by keyword"
        },
        {
          "method": "GET",
          "path": "/?t={title}&type=series",
          "description": "Search TV series by title"
        },
        {
          "method": "GET",
          "path": "/?i={imdbID}&Season=1",
          "description": "Get season episodes"
        }
      ],
      "sampleRequest": "curl 'https://www.omdbapi.com/?t=Inception&apikey=YOUR_KEY'",
      "sampleResponse": "{\"Title\":\"Inception\",\"Year\":\"2010\",\"imdbRating\":\"8.8\",\"Genre\":\"Action, Adventure, Sci-Fi\",\"Director\":\"Christopher Nolan\"}",
      "scoreDepth": 66,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 71,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:47.596Z",
      "verifiedStatus": 200,
      "latencyMs": 1900
    },
    {
      "id": "spinitron",
      "name": "Spinitron",
      "provider": "Spinitron",
      "category": "entertainment",
      "description": "Radio station management API providing access to show playlists, spin history, DJ persona information, and scheduling data for radio stations.",
      "longDescription": "Radio station management API providing access to show playlists, spin history, DJ persona information, and scheduling data for radio stations.",
      "color": "#f97316",
      "tags": [
        "entertainment",
        "radio",
        "music",
        "broadcasting"
      ],
      "authType": "api-key",
      "authDescription": "API key as a query parameter (access-token)",
      "authExample": "GET /playlists?access-token=YOUR_KEY",
      "baseUrl": "https://spinitron.com/api",
      "docsUrl": "https://spinitron.github.io/v2api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Free read access to public station data"
        },
        "tiers": [],
        "details": "Public API available free; station accounts required for write access."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/spins",
          "description": "Get recent spins (songs played)"
        },
        {
          "method": "GET",
          "path": "/playlists",
          "description": "Get playlists for a station"
        },
        {
          "method": "GET",
          "path": "/playlists/{id}",
          "description": "Get a specific playlist"
        },
        {
          "method": "GET",
          "path": "/shows",
          "description": "Get scheduled shows"
        },
        {
          "method": "GET",
          "path": "/shows/{id}",
          "description": "Get a specific show"
        },
        {
          "method": "GET",
          "path": "/personas",
          "description": "Get DJ personas"
        },
        {
          "method": "GET",
          "path": "/personas/{id}",
          "description": "Get a specific DJ persona"
        },
        {
          "method": "POST",
          "path": "/spins",
          "description": "Log a spin"
        }
      ],
      "sampleRequest": "curl 'https://spinitron.com/api/spins?access-token=YOUR_KEY&count=5'",
      "sampleResponse": "{\"items\":[{\"id\":1,\"song\":\"Bohemian Rhapsody\",\"artist\":\"Queen\",\"start\":\"2024-01-01T20:00:00\"}]}",
      "scoreDepth": 74,
      "scoreLatency": 10,
      "scorePricing": 90,
      "score": 60,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.738Z",
      "verifiedStatus": 404,
      "latencyMs": 4577
    },
    {
      "id": "adoptapet",
      "name": "AdoptAPet API",
      "provider": "AdoptAPet",
      "category": "entertainment",
      "description": "Looking to adopt a new puppy or kitten? Adoptapet.com features adoptable pets from over 15,000 animal shelters in the U.S. and Canada.",
      "longDescription": "Looking to adopt a new puppy or kitten? Adoptapet.com features adoptable pets from over 15,000 animal shelters in the U.S. and Canada.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.adoptapet.com",
      "docsUrl": "https://www.adoptapet.com/public/apis/pet_list.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Adopt-a-Pet partner account. Pet adoption listings API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.adoptapet.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 29,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.579Z",
      "verifiedStatus": 200,
      "latencyMs": 3601
    },
    {
      "id": "axolotl",
      "name": "Axolotl API",
      "provider": "Axolotl",
      "category": "entertainment",
      "description": "Netlify's API enables programmatic control of sites, deployments, DNS records, forms, functions, and build hooks. Deploy sites, trigger builds, and manage teams via REST.",
      "longDescription": "Collection of axolotl pictures and facts",
      "color": "#f97316",
      "tags": [
        "maps",
        "entertainment",
        "developer",
        "deployment",
        "hosting",
        "jamstack",
        "ci/cd"
      ],
      "authType": "bearer",
      "authDescription": "Personal Access Token as a Bearer token in the Authorization header",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://theaxolotlapi.netlify.app",
      "docsUrl": "https://theaxolotlapi.netlify.app/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 100,
          "unit": "GB bandwidth",
          "period": "month"
        },
        "tiers": [
          {
            "name": "Hobby",
            "monthlyCents": 0,
            "included": "100 GB bandwidth/mo"
          },
          {
            "name": "Pro",
            "monthlyCents": 1900,
            "included": "400 GB bandwidth/mo"
          },
          {
            "name": "Business",
            "monthlyCents": 9900,
            "included": "Advanced security, SSO"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Hobby: free. Pro: $19/mo (400GB bandwidth). Business: $99/mo. Enterprise: custom pricing."
      },
      "rateLimit": "500 requests/min per API token",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://theaxolotlapi.netlify.app'",
      "sampleResponse": "{}",
      "scoreDepth": 39,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:49.528Z",
      "verifiedStatus": 200,
      "latencyMs": 2401
    },
    {
      "id": "cataas",
      "name": "Cataas API",
      "provider": "Cataas",
      "category": "entertainment",
      "description": "Cat as a service (cats pictures and gifs)",
      "longDescription": "Cat as a service (cats pictures and gifs)",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://cataas.com",
      "docsUrl": "https://cataas.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://cataas.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 39,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.068Z",
      "verifiedStatus": 404,
      "latencyMs": 2770
    },
    {
      "id": "dogs",
      "name": "Dogs API",
      "provider": "Dogs",
      "category": "entertainment",
      "description": "Based on the Stanford Dogs Dataset",
      "longDescription": "Based on the Stanford Dogs Dataset",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://dog.ceo",
      "docsUrl": "https://dog.ceo/dog-api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://dog.ceo'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:49.882Z",
      "verifiedStatus": 200,
      "latencyMs": 2505
    },
    {
      "id": "ebird",
      "name": "eBird API",
      "provider": "eBird",
      "category": "entertainment",
      "description": "Retrieve recent or notable birding observations within a region",
      "longDescription": "Retrieve recent or notable birding observations within a region",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://documenter.getpostman.com",
      "docsUrl": "https://documenter.getpostman.com/view/664302/S1ENwy59",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with eBird account. No paid tiers; maintained by Cornell Lab of Ornithology."
      },
      "rateLimit": "2,000 req/day per key",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://documenter.getpostman.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:49.924Z",
      "verifiedStatus": 200,
      "latencyMs": 2492
    },
    {
      "id": "fishwatch",
      "name": "FishWatch API",
      "provider": "FishWatch",
      "category": "entertainment",
      "description": "Information and pictures about individual fish species",
      "longDescription": "Information and pictures about individual fish species",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.fishwatch.gov",
      "docsUrl": "https://www.fishwatch.gov/developers",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.fishwatch.gov'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 8,
      "scorePricing": 90,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:57.721Z",
      "verifiedStatus": 200,
      "latencyMs": 10252
    },
    {
      "id": "http-dog",
      "name": "HTTP Dog API",
      "provider": "HTTP Dog",
      "category": "entertainment",
      "description": "Dogs for every HTTP response status code",
      "longDescription": "Dogs for every HTTP response status code",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://http.dog",
      "docsUrl": "https://http.dog/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://http.dog'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.120Z",
      "verifiedStatus": 200,
      "latencyMs": 2562
    },
    {
      "id": "petfinder",
      "name": "Petfinder API",
      "provider": "Petfinder",
      "category": "entertainment",
      "description": "Petfinder is dedicated to helping pets find homes, another resource to get pets adopted",
      "longDescription": "Petfinder is dedicated to helping pets find homes, another resource to get pets adopted",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.petfinder.com",
      "docsUrl": "https://www.petfinder.com/developers/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Petfinder developer account. Non-commercial and commercial use allowed."
      },
      "rateLimit": "1,000 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.petfinder.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.182Z",
      "verifiedStatus": 403,
      "latencyMs": 2586
    },
    {
      "id": "the-dog",
      "name": "The Dog API",
      "provider": "The Dog",
      "category": "entertainment",
      "description": "A public service all about Dogs, free to use when making your fancy new App, Website or Service",
      "longDescription": "A public service all about Dogs, free to use when making your fancy new App, Website or Service",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://thedogapi.com",
      "docsUrl": "https://thedogapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier: 10,000 req/month. Paid from $20/mo for higher limits."
      },
      "rateLimit": "10,000 req/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://thedogapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:51.390Z",
      "verifiedStatus": 200,
      "latencyMs": 3752
    },
    {
      "id": "zoo-animals",
      "name": "Zoo Animals API",
      "provider": "Zoo Animals",
      "category": "entertainment",
      "description": "Facts and pictures of zoo animals",
      "longDescription": "Facts and pictures of zoo animals",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://zoo-animal-api.herokuapp.com",
      "docsUrl": "https://zoo-animal-api.herokuapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://zoo-animal-api.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 39,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.426Z",
      "verifiedStatus": 404,
      "latencyMs": 2716
    },
    {
      "id": "ani",
      "name": "AniAPI API",
      "provider": "AniAPI",
      "category": "entertainment",
      "description": "Anime discovery, streaming & syncing with trackers",
      "longDescription": "Anime discovery, streaming & syncing with trackers",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://aniapi.com",
      "docsUrl": "https://aniapi.com/docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open-source. Anime data API; community maintained."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://aniapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 0,
      "scorePricing": 28,
      "score": 16,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:18:51.321Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "danbooru-anime",
      "name": "Danbooru Anime API",
      "provider": "Danbooru Anime",
      "category": "entertainment",
      "description": "Thousands of anime artist database to find good anime art",
      "longDescription": "Thousands of anime artist database to find good anime art",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://danbooru.donmai.us",
      "docsUrl": "https://danbooru.donmai.us/wiki_pages/help:api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Danbooru account. Gold/Platinum memberships ($20/mo) for higher limits."
      },
      "rateLimit": "10 req/s (anonymous); 20 req/s (Gold+)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://danbooru.donmai.us'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.707Z",
      "verifiedStatus": 200,
      "latencyMs": 2927
    },
    {
      "id": "mang",
      "name": "Mangapi API",
      "provider": "Mangapi",
      "category": "entertainment",
      "description": "Translate manga pages from one language to another",
      "longDescription": "Translate manga pages from one language to another",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://rapidapi.com",
      "docsUrl": "https://rapidapi.com/pierre.carcellermeunier/api/mangapi3/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open-source. Manga data API; community maintained."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://rapidapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.756Z",
      "verifiedStatus": 200,
      "latencyMs": 2904
    },
    {
      "id": "myanimelist",
      "name": "MyAnimeList API",
      "provider": "MyAnimeList",
      "category": "entertainment",
      "description": "Welcome to MyAnimeList, the world&#039;s most active online anime and manga community and database. Join the online community, create your anime and manga list, read reviews, explore the forums, follow news, and so much more!",
      "longDescription": "Welcome to MyAnimeList, the world&#039;s most active online anime and manga community and database. Join the online community, create your anime and manga list, read reviews, explore the forums, follow news, and so much more!",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://myanimelist.net",
      "docsUrl": "https://myanimelist.net/clubs.php?cid=13727",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with MAL account. No paid tiers; community-supported API."
      },
      "rateLimit": "Not officially published; ~1 req/s recommended",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://myanimelist.net'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 30,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.927Z",
      "verifiedStatus": 200,
      "latencyMs": 2205
    },
    {
      "id": "nekosbest",
      "name": "NekosBest API",
      "provider": "NekosBest",
      "category": "entertainment",
      "description": "Neko Images & Anime roleplaying GIFs",
      "longDescription": "Neko Images & Anime roleplaying GIFs",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://docs.nekos.best",
      "docsUrl": "https://docs.nekos.best",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.nekos.best'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.791Z",
      "verifiedStatus": 200,
      "latencyMs": 1263
    },
    {
      "id": "shikimori",
      "name": "Shikimori API",
      "provider": "Shikimori",
      "category": "entertainment",
      "description": "Шикимори - онлайн энциклопедия аниме и манги. Полный список популярной манги на русском. Shikimori.one - лучший аниме-форум для общения.",
      "longDescription": "Шикимори - онлайн энциклопедия аниме и манги. Полный список популярной манги на русском. Shikimori.one - лучший аниме-форум для общения.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://shikimori.one",
      "docsUrl": "https://shikimori.one/api/doc",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Russian anime/manga community API; no paid tiers."
      },
      "rateLimit": "90 req/min per IP",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://shikimori.one'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:51.212Z",
      "verifiedStatus": 200,
      "latencyMs": 1330
    },
    {
      "id": "studio-ghibli",
      "name": "Studio Ghibli API",
      "provider": "Studio Ghibli",
      "category": "entertainment",
      "description": "Resources from Studio Ghibli films",
      "longDescription": "Resources from Studio Ghibli films",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://ghibliapi.herokuapp.com",
      "docsUrl": "https://ghibliapi.herokuapp.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://ghibliapi.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.998Z",
      "verifiedStatus": 404,
      "latencyMs": 1074
    },
    {
      "id": "trace-moe",
      "name": "Trace Moe API",
      "provider": "Trace Moe",
      "category": "entertainment",
      "description": "A useful tool to get the exact scene of an anime from a screenshot",
      "longDescription": "A useful tool to get the exact scene of an anime from a screenshot",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://soruly.github.io",
      "docsUrl": "https://soruly.github.io/trace.moe-api/#/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://soruly.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:50.930Z",
      "verifiedStatus": 404,
      "latencyMs": 862
    },
    {
      "id": "waifu-im",
      "name": "Waifu.im API",
      "provider": "Waifu.im",
      "category": "entertainment",
      "description": "Get waifu pictures from an archive of over 4000 images and multiple tags",
      "longDescription": "Get waifu pictures from an archive of over 4000 images and multiple tags",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://waifu.im",
      "docsUrl": "https://waifu.im/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://waifu.im'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:52.583Z",
      "verifiedStatus": 200,
      "latencyMs": 2463
    },
    {
      "id": "waifu-pics",
      "name": "Waifu.pics API",
      "provider": "Waifu.pics",
      "category": "entertainment",
      "description": "Image sharing platform for anime images",
      "longDescription": "Image sharing platform for anime images",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://waifu.pics",
      "docsUrl": "https://waifu.pics/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://waifu.pics'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:51.069Z",
      "verifiedStatus": 200,
      "latencyMs": 886
    },
    {
      "id": "dribbble",
      "name": "Dribbble API",
      "provider": "Dribbble",
      "category": "entertainment",
      "description": "Discover the world’s top designers & creatives",
      "longDescription": "Discover the world’s top designers & creatives",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.dribbble.com",
      "docsUrl": "https://developer.dribbble.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Dribbble account. Read access: 60 req/min. Write access requires approval."
      },
      "rateLimit": "60 req/min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.dribbble.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:51.879Z",
      "verifiedStatus": 200,
      "latencyMs": 1172
    },
    {
      "id": "europeana",
      "name": "Europeana API",
      "provider": "Europeana",
      "category": "entertainment",
      "description": "European Museum and Galleries content",
      "longDescription": "European Museum and Galleries content",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://pro.europeana.eu",
      "docsUrl": "https://pro.europeana.eu/resources/apis/search",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key. No paid tiers; European cultural heritage collections."
      },
      "rateLimit": "100 req/s per API key",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://pro.europeana.eu'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:51.452Z",
      "verifiedStatus": 403,
      "latencyMs": 713
    },
    {
      "id": "icon-horse",
      "name": "Icon Horse API",
      "provider": "Icon Horse",
      "category": "entertainment",
      "description": "Favicons for any website, with fallbacks",
      "longDescription": "Favicons for any website, with fallbacks",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://icon.horse",
      "docsUrl": "https://icon.horse",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://icon.horse'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:51.578Z",
      "verifiedStatus": 200,
      "latencyMs": 822
    },
    {
      "id": "icons8",
      "name": "Icons8 API",
      "provider": "Icons8",
      "category": "entertainment",
      "description": "Icons (find \"search icon\" hyperlink in page)",
      "longDescription": "Icons (find \"search icon\" hyperlink in page)",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://img.icons8.com",
      "docsUrl": "https://img.icons8.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://img.icons8.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:51.505Z",
      "verifiedStatus": 200,
      "latencyMs": 722
    },
    {
      "id": "php-noise",
      "name": "PHP-Noise API",
      "provider": "PHP-Noise",
      "category": "entertainment",
      "description": "PHP-Noise is a free and Open Source «Noise Background Image» generator which allows you to create your very own background images.",
      "longDescription": "PHP-Noise is a free and Open Source «Noise Background Image» generator which allows you to create your very own background images.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://php-noise.com",
      "docsUrl": "https://php-noise.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://php-noise.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:52.069Z",
      "verifiedStatus": 200,
      "latencyMs": 1278
    },
    {
      "id": "a-b-blia-digital",
      "name": "A Bíblia Digital API",
      "provider": "A Bíblia Digital",
      "category": "entertainment",
      "description": "Do not worry about managing the multiple versions of the Bible",
      "longDescription": "Do not worry about managing the multiple versions of the Bible",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.abibliadigital.com.br",
      "docsUrl": "https://www.abibliadigital.com.br/en",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with account. Brazilian Bible API for accessing Biblical texts."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.abibliadigital.com.br'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.258Z",
      "verifiedStatus": 200,
      "latencyMs": 1499
    },
    {
      "id": "bhagavad-gita",
      "name": "Bhagavad Gita API",
      "provider": "Bhagavad Gita",
      "category": "entertainment",
      "description": "Open Source Shrimad Bhagavad Gita API including 21+ authors translation in Sanskrit/English/Hindi",
      "longDescription": "Open Source Shrimad Bhagavad Gita API including 21+ authors translation in Sanskrit/English/Hindi",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.bhagavadgitaapi.in",
      "docsUrl": "https://docs.bhagavadgitaapi.in",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. No authentication required; spiritual text API."
      },
      "rateLimit": "Not enforced",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.bhagavadgitaapi.in'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:52.702Z",
      "verifiedStatus": 200,
      "latencyMs": 922
    },
    {
      "id": "bhagavad-gita-telugu",
      "name": "Bhagavad Gita telugu API",
      "provider": "Bhagavad Gita telugu",
      "category": "entertainment",
      "description": "Bhagavad Gita API in telugu and odia languages",
      "longDescription": "Bhagavad Gita API in telugu and odia languages",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://gita-api.vercel.app",
      "docsUrl": "https://gita-api.vercel.app",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://gita-api.vercel.app'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.531Z",
      "verifiedStatus": 200,
      "latencyMs": 3652
    },
    {
      "id": "bible",
      "name": "Bible-api API",
      "provider": "Bible-api",
      "category": "entertainment",
      "description": "Free Bible API with multiple languages",
      "longDescription": "Free Bible API with multiple languages",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://bible-api.com",
      "docsUrl": "https://bible-api.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://bible-api.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.233Z",
      "verifiedStatus": 200,
      "latencyMs": 1232
    },
    {
      "id": "ganjoor",
      "name": "Ganjoor API",
      "provider": "Ganjoor",
      "category": "entertainment",
      "description": "Classic Persian poetry works including access to related manuscripts, recitations and music tracks",
      "longDescription": "Classic Persian poetry works including access to related manuscripts, recitations and music tracks",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.ganjoor.net",
      "docsUrl": "https://api.ganjoor.net",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open-source. Persian classical poetry API; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.ganjoor.net'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.714Z",
      "verifiedStatus": 404,
      "latencyMs": 1693
    },
    {
      "id": "gutendex",
      "name": "Gutendex API",
      "provider": "Gutendex",
      "category": "entertainment",
      "description": "Web-API for fetching data from Project Gutenberg Books Library",
      "longDescription": "Web-API for fetching data from Project Gutenberg Books Library",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://gutendex.com",
      "docsUrl": "https://gutendex.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://gutendex.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.785Z",
      "verifiedStatus": 200,
      "latencyMs": 1716
    },
    {
      "id": "open-library",
      "name": "Open Library API",
      "provider": "Open Library",
      "category": "entertainment",
      "description": "Open Library is an open, editable library catalog, building towards a web page for every book ever published. Read, borrow, and discover more than 3M books for free.",
      "longDescription": "Open Library is an open, editable library catalog, building towards a web page for every book ever published. Read, borrow, and discover more than 3M books for free.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://openlibrary.org",
      "docsUrl": "https://openlibrary.org/developers/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://openlibrary.org'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.464Z",
      "verifiedStatus": 200,
      "latencyMs": 1132
    },
    {
      "id": "penguin-publishing",
      "name": "Penguin Publishing API",
      "provider": "Penguin Publishing",
      "category": "entertainment",
      "description": "Books, book covers and related data",
      "longDescription": "Books, book covers and related data",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://www.penguinrandomhouse.biz",
      "docsUrl": "http://www.penguinrandomhouse.biz/webservices/rest/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.penguinrandomhouse.biz'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:54.405Z",
      "verifiedStatus": 200,
      "latencyMs": 2026
    },
    {
      "id": "quran",
      "name": "Quran API",
      "provider": "Quran",
      "category": "entertainment",
      "description": "RESTful Quran API with multiple languages",
      "longDescription": "RESTful Quran API with multiple languages",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://quran.api-docs.io",
      "docsUrl": "https://quran.api-docs.io/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://quran.api-docs.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.348Z",
      "verifiedStatus": 200,
      "latencyMs": 2942
    },
    {
      "id": "quran-cloud",
      "name": "Quran Cloud API",
      "provider": "Quran Cloud",
      "category": "entertainment",
      "description": "A RESTful Quran API to retrieve an Ayah, Surah, Juz or the entire Holy Quran",
      "longDescription": "A RESTful Quran API to retrieve an Ayah, Surah, Juz or the entire Holy Quran",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://alquran.cloud",
      "docsUrl": "https://alquran.cloud/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://alquran.cloud'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.557Z",
      "verifiedStatus": 200,
      "latencyMs": 1147
    },
    {
      "id": "rig-veda",
      "name": "Rig Veda API",
      "provider": "Rig Veda",
      "category": "entertainment",
      "description": "Gods and poets, their categories, and the verse meters, with the mandal and sukta number",
      "longDescription": "Gods and poets, their categories, and the verse meters, with the mandal and sukta number",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://aninditabasu.github.io",
      "docsUrl": "https://aninditabasu.github.io/indica/html/rv.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://aninditabasu.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.500Z",
      "verifiedStatus": 404,
      "latencyMs": 984
    },
    {
      "id": "the-bible",
      "name": "The Bible API",
      "provider": "The Bible",
      "category": "entertainment",
      "description": "Everything you need from the Bible in one discoverable place",
      "longDescription": "Everything you need from the Bible in one discoverable place",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.api.bible",
      "docsUrl": "https://docs.api.bible",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer account from api.bible. No paid tiers for Bible text access."
      },
      "rateLimit": "5,000 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.api.bible'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.580Z",
      "verifiedStatus": 200,
      "latencyMs": 1054
    },
    {
      "id": "thirukkural",
      "name": "Thirukkural API",
      "provider": "Thirukkural",
      "category": "entertainment",
      "description": "1330 Thirukkural poems and explanation in Tamil and English",
      "longDescription": "1330 Thirukkural poems and explanation in Tamil and English",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api-thirukkural.web.app",
      "docsUrl": "https://api-thirukkural.web.app/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api-thirukkural.web.app'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:53.584Z",
      "verifiedStatus": 200,
      "latencyMs": 1046
    },
    {
      "id": "wizard-world",
      "name": "Wizard World API",
      "provider": "Wizard World",
      "category": "entertainment",
      "description": "Get information from the Harry Potter universe",
      "longDescription": "Get information from the Harry Potter universe",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://wizard-world-api.herokuapp.com",
      "docsUrl": "https://wizard-world-api.herokuapp.com/swagger/index.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://wizard-world-api.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:54.160Z",
      "verifiedStatus": 404,
      "latencyMs": 1577
    },
    {
      "id": "wolne-lektury",
      "name": "Wolne Lektury API",
      "provider": "Wolne Lektury",
      "category": "entertainment",
      "description": "API for obtaining information about e-books available on the WolneLektury.pl website",
      "longDescription": "API for obtaining information about e-books available on the WolneLektury.pl website",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://wolnelektury.pl",
      "docsUrl": "https://wolnelektury.pl/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://wolnelektury.pl'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:18:55.373Z",
      "verifiedStatus": 200,
      "latencyMs": 2694
    },
    {
      "id": "chucknorris-io",
      "name": "chucknorris.io API",
      "provider": "chucknorris.io",
      "category": "entertainment",
      "description": "JSON API for hand curated Chuck Norris jokes",
      "longDescription": "JSON API for hand curated Chuck Norris jokes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.chucknorris.io",
      "docsUrl": "https://api.chucknorris.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.chucknorris.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.719Z",
      "verifiedStatus": 200,
      "latencyMs": 708
    },
    {
      "id": "excuser",
      "name": "Excuser API",
      "provider": "Excuser",
      "category": "entertainment",
      "description": "Get random excuses for various situations",
      "longDescription": "Get random excuses for various situations",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://excuser.herokuapp.com",
      "docsUrl": "https://excuser.herokuapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://excuser.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:07.292Z",
      "verifiedStatus": 404,
      "latencyMs": 1273
    },
    {
      "id": "fun-fact",
      "name": "Fun Fact API",
      "provider": "Fun Fact",
      "category": "entertainment",
      "description": "A simple HTTPS api that can randomly select and return a fact from the FFA database",
      "longDescription": "A simple HTTPS api that can randomly select and return a fact from the FFA database",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.aakhilv.me",
      "docsUrl": "https://api.aakhilv.me",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.aakhilv.me'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 34,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:19:08.338Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "meme-maker",
      "name": "Meme Maker API",
      "provider": "Meme Maker",
      "category": "entertainment",
      "description": "REST API for create your own meme",
      "longDescription": "REST API for create your own meme",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://mememaker.github.io",
      "docsUrl": "https://mememaker.github.io/API/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://mememaker.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.888Z",
      "verifiedStatus": 200,
      "latencyMs": 689
    },
    {
      "id": "techy",
      "name": "Techy API",
      "provider": "Techy",
      "category": "entertainment",
      "description": "JSON and Plaintext API for tech-savvy sounding phrases",
      "longDescription": "JSON and Plaintext API for tech-savvy sounding phrases",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://techy-api.vercel.app",
      "docsUrl": "https://techy-api.vercel.app/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://techy-api.vercel.app'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:06.996Z",
      "verifiedStatus": 200,
      "latencyMs": 796
    },
    {
      "id": "age-of-empires-ii",
      "name": "Age of Empires II API",
      "provider": "Age of Empires II",
      "category": "entertainment",
      "description": "Get information about Age of Empires II resources",
      "longDescription": "Get information about Age of Empires II resources",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://age-of-empires-2-api.herokuapp.com",
      "docsUrl": "https://age-of-empires-2-api.herokuapp.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://age-of-empires-2-api.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.479Z",
      "verifiedStatus": 404,
      "latencyMs": 1010
    },
    {
      "id": "battle-net",
      "name": "Battle.net API",
      "provider": "Battle.net",
      "category": "entertainment",
      "description": "Diablo III, Hearthstone, StarCraft II and World of Warcraft game data APIs",
      "longDescription": "Diablo III, Hearthstone, StarCraft II and World of Warcraft game data APIs",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://develop.battle.net",
      "docsUrl": "https://develop.battle.net/documentation/guides/getting-started",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Blizzard developer account. Access to game data APIs at no charge."
      },
      "rateLimit": "36,000 req/hour",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://develop.battle.net'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.509Z",
      "verifiedStatus": 200,
      "latencyMs": 1925
    },
    {
      "id": "board-game-geek",
      "name": "Board Game Geek API",
      "provider": "Board Game Geek",
      "category": "entertainment",
      "description": "Board games, RPG and videogames",
      "longDescription": "Board games, RPG and videogames",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://boardgamegeek.com",
      "docsUrl": "https://boardgamegeek.com/wiki/page/BGG_XML_API2",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://boardgamegeek.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.584Z",
      "verifiedStatus": 200,
      "latencyMs": 973
    },
    {
      "id": "clash-of-clans",
      "name": "Clash of Clans API",
      "provider": "Clash of Clans",
      "category": "entertainment",
      "description": "Clash of Clans Game Information",
      "longDescription": "Clash of Clans Game Information",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.clashofclans.com",
      "docsUrl": "https://developer.clashofclans.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Supercell developer account. Player, clan, and war statistics."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.clashofclans.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.792Z",
      "verifiedStatus": 200,
      "latencyMs": 1095
    },
    {
      "id": "crafatar",
      "name": "Crafatar API",
      "provider": "Crafatar",
      "category": "entertainment",
      "description": "API for Minecraft skins and faces",
      "longDescription": "API for Minecraft skins and faces",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://crafatar.com",
      "docsUrl": "https://crafatar.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://crafatar.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 44,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.638Z",
      "verifiedStatus": 521,
      "latencyMs": 938
    },
    {
      "id": "digimon-information",
      "name": "Digimon Information API",
      "provider": "Digimon Information",
      "category": "entertainment",
      "description": "Provides information about digimon creatures",
      "longDescription": "Provides information about digimon creatures",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://digimon-api.vercel.app",
      "docsUrl": "https://digimon-api.vercel.app/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://digimon-api.vercel.app'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.859Z",
      "verifiedStatus": 200,
      "latencyMs": 1093
    },
    {
      "id": "disney",
      "name": "Disney API",
      "provider": "Disney",
      "category": "entertainment",
      "description": "Information of Disney characters",
      "longDescription": "Information of Disney characters",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://disneyapi.dev",
      "docsUrl": "https://disneyapi.dev",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://disneyapi.dev'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.767Z",
      "verifiedStatus": 200,
      "latencyMs": 972
    },
    {
      "id": "dota-2",
      "name": "Dota 2 API",
      "provider": "Dota 2",
      "category": "entertainment",
      "description": "Provides information about Player stats , Match stats, Rankings for Dota 2",
      "longDescription": "Provides information about Player stats , Match stats, Rankings for Dota 2",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.opendota.com",
      "docsUrl": "https://docs.opendota.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free via Steam Web API. No paid tiers; game statistics and match data."
      },
      "rateLimit": "100,000 req/day",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.opendota.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.817Z",
      "verifiedStatus": 200,
      "latencyMs": 924
    },
    {
      "id": "dungeons-and-dragons-alternate",
      "name": "Dungeons and Dragons (Alternate) API",
      "provider": "Dungeons and Dragons (Alternate)",
      "category": "entertainment",
      "description": "Includes all monsters and spells from the SRD (System Reference Document) as well as a search API",
      "longDescription": "Includes all monsters and spells from the SRD (System Reference Document) as well as a search API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://open5e.com",
      "docsUrl": "https://open5e.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://open5e.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.877Z",
      "verifiedStatus": 200,
      "latencyMs": 945
    },
    {
      "id": "eve-online",
      "name": "Eve Online API",
      "provider": "Eve Online",
      "category": "entertainment",
      "description": "Third-Party Developer Documentation",
      "longDescription": "Third-Party Developer Documentation",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://esi.evetech.net",
      "docsUrl": "https://esi.evetech.net/ui",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free ESI API. No paid tiers; maintained by CCP Games for EVE Online data."
      },
      "rateLimit": "~150 req/s across all endpoints",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://esi.evetech.net'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:13.055Z",
      "verifiedStatus": 200,
      "latencyMs": 2050
    },
    {
      "id": "ffxiv-collect",
      "name": "FFXIV Collect API",
      "provider": "FFXIV Collect",
      "category": "entertainment",
      "description": "Another website for tracking your Final Fantasy XIV collections.",
      "longDescription": "Another website for tracking your Final Fantasy XIV collections.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://ffxivcollect.com",
      "docsUrl": "https://ffxivcollect.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://ffxivcollect.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:11.981Z",
      "verifiedStatus": 200,
      "latencyMs": 944
    },
    {
      "id": "final-fantasy-xiv",
      "name": "Final Fantasy XIV API",
      "provider": "Final Fantasy XIV",
      "category": "entertainment",
      "description": "The FFXIV web API - Search and explore comprehensive game data.",
      "longDescription": "The FFXIV web API - Search and explore comprehensive game data.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://xivapi.com",
      "docsUrl": "https://xivapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://xivapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.726Z",
      "verifiedStatus": 200,
      "latencyMs": 1670
    },
    {
      "id": "gdbrowser",
      "name": "GDBrowser API",
      "provider": "GDBrowser",
      "category": "entertainment",
      "description": "Easy way to use the Geometry Dash Servers",
      "longDescription": "Easy way to use the Geometry Dash Servers",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://gdbrowser.com",
      "docsUrl": "https://gdbrowser.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://gdbrowser.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.221Z",
      "verifiedStatus": 200,
      "latencyMs": 1036
    },
    {
      "id": "joke",
      "name": "JokeAPI API",
      "provider": "JokeAPI",
      "category": "entertainment",
      "description": "Programming, Miscellaneous and Dark Jokes",
      "longDescription": "Programming, Miscellaneous and Dark Jokes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://sv443.net",
      "docsUrl": "https://sv443.net/jokeapi/v2/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://sv443.net'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.070Z",
      "verifiedStatus": 200,
      "latencyMs": 830
    },
    {
      "id": "jokes-one",
      "name": "Jokes One API",
      "provider": "Jokes One",
      "category": "entertainment",
      "description": "Joke of the day and large category of jokes accessible via REST API",
      "longDescription": "Joke of the day and large category of jokes accessible via REST API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://jokes.one",
      "docsUrl": "https://jokes.one/api/joke/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 5 req/hour. Paid plans from $5/mo (unlimited). Annual plans available."
      },
      "rateLimit": "5 req/hour (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://jokes.one'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.255Z",
      "verifiedStatus": 200,
      "latencyMs": 840
    },
    {
      "id": "lichess",
      "name": "Lichess API",
      "provider": "Lichess",
      "category": "entertainment",
      "description": "Access to all data of users, games, puzzles and etc on Lichess",
      "longDescription": "Access to all data of users, games, puzzles and etc on Lichess",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://lichess.org",
      "docsUrl": "https://lichess.org/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Completely free and open-source. No API keys required for most endpoints."
      },
      "rateLimit": "~15 req/s (anonymous); higher when authenticated",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://lichess.org'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.430Z",
      "verifiedStatus": 200,
      "latencyMs": 950
    },
    {
      "id": "mario-kart-tour",
      "name": "Mario Kart Tour API",
      "provider": "Mario Kart Tour",
      "category": "entertainment",
      "description": "API for Drivers, Karts, Gliders and Courses",
      "longDescription": "API for Drivers, Karts, Gliders and Courses",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://mario-kart-tour-api.herokuapp.com",
      "docsUrl": "https://mario-kart-tour-api.herokuapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Unofficial/reverse-engineered API. No official pricing; third-party maintained."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://mario-kart-tour-api.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.329Z",
      "verifiedStatus": 404,
      "latencyMs": 842
    },
    {
      "id": "minecraft-server-status",
      "name": "Minecraft Server Status API",
      "provider": "Minecraft Server Status",
      "category": "entertainment",
      "description": "API to get Information about a Minecraft Server",
      "longDescription": "API to get Information about a Minecraft Server",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.mcsrvstat.us",
      "docsUrl": "https://api.mcsrvstat.us",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.mcsrvstat.us'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.148Z",
      "verifiedStatus": 200,
      "latencyMs": 621
    },
    {
      "id": "mmo-games",
      "name": "MMO Games API",
      "provider": "MMO Games",
      "category": "entertainment",
      "description": "Your best source for free MMORPGs and MMOs. Get exclusive coverage, giveaways, reviews, news and more",
      "longDescription": "Your best source for free MMORPGs and MMOs. Get exclusive coverage, giveaways, reviews, news and more",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.mmobomb.com",
      "docsUrl": "https://www.mmobomb.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.mmobomb.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 58,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.475Z",
      "verifiedStatus": 200,
      "latencyMs": 891
    },
    {
      "id": "playerdb",
      "name": "PlayerDB API",
      "provider": "PlayerDB",
      "category": "entertainment",
      "description": "Query Minecraft, Steam and XBox Accounts",
      "longDescription": "Query Minecraft, Steam and XBox Accounts",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://playerdb.co",
      "docsUrl": "https://playerdb.co/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://playerdb.co'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.237Z",
      "verifiedStatus": 200,
      "latencyMs": 599
    },
    {
      "id": "psychonauts",
      "name": "Psychonauts API",
      "provider": "Psychonauts",
      "category": "entertainment",
      "description": "Netlify's API enables programmatic control of sites, deployments, DNS records, forms, functions, and build hooks. Deploy sites, trigger builds, and manage teams via REST.",
      "longDescription": "Psychonauts World Characters Information and PSI Powers",
      "color": "#f97316",
      "tags": [
        "maps",
        "entertainment",
        "developer",
        "deployment",
        "hosting",
        "jamstack",
        "ci/cd"
      ],
      "authType": "bearer",
      "authDescription": "Personal Access Token as a Bearer token in the Authorization header",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://psychonauts-api.netlify.app",
      "docsUrl": "https://psychonauts-api.netlify.app/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 100,
          "unit": "GB bandwidth",
          "period": "month"
        },
        "tiers": [
          {
            "name": "Hobby",
            "monthlyCents": 0,
            "included": "100 GB bandwidth/mo"
          },
          {
            "name": "Pro",
            "monthlyCents": 1900,
            "included": "400 GB bandwidth/mo"
          },
          {
            "name": "Business",
            "monthlyCents": 9900,
            "included": "Advanced security, SSO"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Hobby: free. Pro: $19/mo (400GB bandwidth). Business: $99/mo. Enterprise: custom pricing."
      },
      "rateLimit": "500 requests/min per API token",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://psychonauts-api.netlify.app'",
      "sampleResponse": "{}",
      "scoreDepth": 43,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 67,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.298Z",
      "verifiedStatus": 200,
      "latencyMs": 531
    },
    {
      "id": "quizapi-io",
      "name": "quizapi.io API",
      "provider": "quizapi.io",
      "category": "entertainment",
      "description": "Access to various kind of quiz questions",
      "longDescription": "Access to various kind of quiz questions",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://quizapi.io",
      "docsUrl": "https://quizapi.io/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 20 req/min, 100 req/day. Pro $5/mo (1,000/day), Premium $15/mo (5,000/day)."
      },
      "rateLimit": "20 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://quizapi.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.394Z",
      "verifiedStatus": 200,
      "latencyMs": 602
    },
    {
      "id": "raider",
      "name": "Raider API",
      "provider": "Raider",
      "category": "entertainment",
      "description": "Provides detailed character and guild rankings for Raiding and Mythic+ content in World of Warcraft",
      "longDescription": "Provides detailed character and guild rankings for Raiding and Mythic+ content in World of Warcraft",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://raider.io",
      "docsUrl": "https://raider.io/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://raider.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.439Z",
      "verifiedStatus": 200,
      "latencyMs": 622
    },
    {
      "id": "rick-and-morty",
      "name": "Rick and Morty API",
      "provider": "Rick and Morty",
      "category": "entertainment",
      "description": "All the Rick and Morty information, including images",
      "longDescription": "All the Rick and Morty information, including images",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://rickandmortyapi.com",
      "docsUrl": "https://rickandmortyapi.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://rickandmortyapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 90,
      "scorePricing": 90,
      "score": 61,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.310Z",
      "verifiedStatus": 200,
      "latencyMs": 480
    },
    {
      "id": "riot-games",
      "name": "Riot Games API",
      "provider": "Riot Games",
      "category": "entertainment",
      "description": "League of Legends Game Information",
      "longDescription": "League of Legends Game Information",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.riotgames.com",
      "docsUrl": "https://developer.riotgames.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Riot developer account. Personal keys: 20 req/s; production keys by approval."
      },
      "rateLimit": "20 req/s (personal); higher limits for production apps",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.riotgames.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.902Z",
      "verifiedStatus": 200,
      "latencyMs": 1043
    },
    {
      "id": "rps-101",
      "name": "RPS 101 API",
      "provider": "RPS 101",
      "category": "entertainment",
      "description": "Rock, Paper, Scissors with 101 objects",
      "longDescription": "Rock, Paper, Scissors with 101 objects",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://rps101.pythonanywhere.com",
      "docsUrl": "https://rps101.pythonanywhere.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://rps101.pythonanywhere.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 44,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.487Z",
      "verifiedStatus": 404,
      "latencyMs": 614
    },
    {
      "id": "runescape",
      "name": "RuneScape API",
      "provider": "RuneScape",
      "category": "entertainment",
      "description": "RuneScape and OSRS RPGs information",
      "longDescription": "RuneScape and OSRS RPGs information",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://runescape.wiki",
      "docsUrl": "https://runescape.wiki/w/Application_programming_interface",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://runescape.wiki'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.458Z",
      "verifiedStatus": 200,
      "latencyMs": 581
    },
    {
      "id": "spacetraders",
      "name": "SpaceTradersAPI API",
      "provider": "SpaceTradersAPI",
      "category": "entertainment",
      "description": "A playable inter-galactic space trading MMOAPI",
      "longDescription": "A playable inter-galactic space trading MMOAPI",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://spacetraders.io",
      "docsUrl": "https://spacetraders.io?rel=pub-apis",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Browser-based space trading game API; no paid tiers."
      },
      "rateLimit": "2 req/s per agent",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://spacetraders.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:13.254Z",
      "verifiedStatus": 200,
      "latencyMs": 1273
    },
    {
      "id": "superheroes",
      "name": "SuperHeroes API",
      "provider": "SuperHeroes",
      "category": "entertainment",
      "description": "All SuperHeroes and Villains data from all universes under a single API",
      "longDescription": "All SuperHeroes and Villains data from all universes under a single API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://superheroapi.com",
      "docsUrl": "https://superheroapi.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer key. No paid tiers for superhero/villain character data."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://superheroapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.597Z",
      "verifiedStatus": 200,
      "latencyMs": 606
    },
    {
      "id": "tebex",
      "name": "Tebex API",
      "provider": "Tebex",
      "category": "entertainment",
      "description": "Tebex API for information about game purchases",
      "longDescription": "Tebex API for information about game purchases",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.tebex.io",
      "docsUrl": "https://docs.tebex.io/plugin/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Tebex store. 0% platform fee on most game servers; payment processing fees apply."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.tebex.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:14.586Z",
      "verifiedStatus": 200,
      "latencyMs": 2516
    },
    {
      "id": "tronald-dump",
      "name": "Tronald Dump API",
      "provider": "Tronald Dump",
      "category": "entertainment",
      "description": "The dumbest things Donald Trump has ever said",
      "longDescription": "The dumbest things Donald Trump has ever said",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.tronalddump.io",
      "docsUrl": "https://www.tronalddump.io/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.tronalddump.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:13.269Z",
      "verifiedStatus": 200,
      "latencyMs": 1121
    },
    {
      "id": "universalis",
      "name": "Universalis API",
      "provider": "Universalis",
      "category": "entertainment",
      "description": "Final Fantasy XIV Online: Market Board aggregator. Find Prices, track Item History and create Price Alerts. Anywhere, anytime.",
      "longDescription": "Final Fantasy XIV Online: Market Board aggregator. Find Prices, track Item History and create Price Alerts. Anywhere, anytime.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://universalis.app",
      "docsUrl": "https://universalis.app/docs/index.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://universalis.app'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 58,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.798Z",
      "verifiedStatus": 200,
      "latencyMs": 577
    },
    {
      "id": "valorant-non-official",
      "name": "Valorant (non-official) API",
      "provider": "Valorant (non-official)",
      "category": "entertainment",
      "description": "An extensive API containing data of most Valorant in-game items, assets and more",
      "longDescription": "An extensive API containing data of most Valorant in-game items, assets and more",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://valorant-api.com",
      "docsUrl": "https://valorant-api.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://valorant-api.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:12.931Z",
      "verifiedStatus": 200,
      "latencyMs": 694
    },
    {
      "id": "warface-non-official",
      "name": "Warface (non-official) API",
      "provider": "Warface (non-official)",
      "category": "entertainment",
      "description": "Official API proxy with better data structure and more features",
      "longDescription": "Official API proxy with better data structure and more features",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.wfstats.cf",
      "docsUrl": "https://api.wfstats.cf",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.wfstats.cf'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:13.774Z",
      "verifiedStatus": 200,
      "latencyMs": 1519
    },
    {
      "id": "audiomack",
      "name": "Audiomack API",
      "provider": "Audiomack",
      "category": "entertainment",
      "description": "Api of the streaming music hub Audiomack",
      "longDescription": "Api of the streaming music hub Audiomack",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.audiomack.com",
      "docsUrl": "https://www.audiomack.com/data-api/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer account for non-commercial use. Commercial licensing available."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.audiomack.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.664Z",
      "verifiedStatus": 200,
      "latencyMs": 3840
    },
    {
      "id": "genius",
      "name": "Genius API",
      "provider": "Genius",
      "category": "entertainment",
      "description": "Crowdsourced lyrics and music knowledge",
      "longDescription": "Crowdsourced lyrics and music knowledge",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.genius.com",
      "docsUrl": "https://docs.genius.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer account. No paid tiers for lyrics/annotation metadata."
      },
      "rateLimit": "Not officially published; generous for personal use",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.genius.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.062Z",
      "verifiedStatus": 200,
      "latencyMs": 3190
    },
    {
      "id": "kkbox",
      "name": "KKBOX API",
      "provider": "KKBOX",
      "category": "entertainment",
      "description": "Box Platform API provides cloud storage, file sharing, and collaboration tools for enterprise applications. Manage files, folders, users, shared links, metadata, and workflow automations.",
      "longDescription": "Get music libraries, playlists, charts, and perform out of KKBOX's platform",
      "color": "#f97316",
      "tags": [
        "communication",
        "maps",
        "entertainment",
        "storage",
        "cloud storage",
        "files",
        "enterprise",
        "collaboration"
      ],
      "authType": "oauth2",
      "authDescription": "OAuth 2.0 or JWT (Server Authentication) for machine-to-machine",
      "authExample": "Authorization: Bearer YOUR_ACCESS_TOKEN",
      "baseUrl": "https://developer.kkbox.com",
      "docsUrl": "https://developer.kkbox.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": 10,
          "unit": "GB storage",
          "period": "forever"
        },
        "tiers": [
          {
            "name": "Individual",
            "monthlyCents": 0,
            "included": "10 GB storage"
          },
          {
            "name": "Business Starter",
            "monthlyCents": 1500,
            "included": "Per user/mo, unlimited storage"
          },
          {
            "name": "Business",
            "monthlyCents": 2000,
            "included": "Per user/mo, advanced admin"
          },
          {
            "name": "Enterprise",
            "monthlyCents": null,
            "included": "Custom pricing"
          }
        ],
        "details": "Individual: free (10GB). Business Starter: $15/user/mo (unlimited storage). Business: $20/user/mo. Enterprise: custom."
      },
      "rateLimit": "4,000 API calls/min (authenticated)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.kkbox.com'",
      "sampleResponse": "{}",
      "scoreDepth": 43,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 56,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.417Z",
      "verifiedStatus": 200,
      "latencyMs": 3498
    },
    {
      "id": "openwhyd",
      "name": "Openwhyd API",
      "provider": "Openwhyd",
      "category": "entertainment",
      "description": "Download curated playlists of streaming tracks (YouTube, SoundCloud, etc...)",
      "longDescription": "Download curated playlists of streaming tracks (YouTube, SoundCloud, etc...)",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://openwhyd.github.io",
      "docsUrl": "https://openwhyd.github.io/openwhyd/API",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://openwhyd.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.007Z",
      "verifiedStatus": 404,
      "latencyMs": 2796
    },
    {
      "id": "phishin",
      "name": "Phishin API",
      "provider": "Phishin",
      "category": "entertainment",
      "description": "A web-based archive of legal live audio recordings of the improvisational rock band Phish",
      "longDescription": "A web-based archive of legal live audio recordings of the improvisational rock band Phish",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://phish.in",
      "docsUrl": "https://phish.in/api-docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Community-maintained Phish concert recordings and setlist API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://phish.in'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.164Z",
      "verifiedStatus": 200,
      "latencyMs": 2893
    },
    {
      "id": "radio-browser",
      "name": "Radio Browser API",
      "provider": "Radio Browser",
      "category": "entertainment",
      "description": "List of internet radio stations",
      "longDescription": "List of internet radio stations",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.radio-browser.info",
      "docsUrl": "https://api.radio-browser.info/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.radio-browser.info'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.169Z",
      "verifiedStatus": 200,
      "latencyMs": 2791
    },
    {
      "id": "songsterr",
      "name": "Songsterr API",
      "provider": "Songsterr",
      "category": "entertainment",
      "description": "Provides guitar, bass and drums tabs and chords",
      "longDescription": "Provides guitar, bass and drums tabs and chords",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.songsterr.com",
      "docsUrl": "https://www.songsterr.com/a/wa/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.songsterr.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.292Z",
      "verifiedStatus": 200,
      "latencyMs": 2197
    },
    {
      "id": "tastedive",
      "name": "TasteDive API",
      "provider": "TasteDive",
      "category": "entertainment",
      "description": "Similar artist API (also works for movies and TV shows)",
      "longDescription": "Similar artist API (also works for movies and TV shows)",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://tastedive.com",
      "docsUrl": "https://tastedive.com/read/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 300 req/month. Paid from $2.99/mo (1,000 req) to $29.99/mo (100,000 req)."
      },
      "rateLimit": "20 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://tastedive.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.221Z",
      "verifiedStatus": 200,
      "latencyMs": 2081
    },
    {
      "id": "vagalume",
      "name": "Vagalume API",
      "provider": "Vagalume",
      "category": "entertainment",
      "description": "Crowdsourced lyrics and music knowledge",
      "longDescription": "Crowdsourced lyrics and music knowledge",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.vagalume.com.br",
      "docsUrl": "https://api.vagalume.com.br/docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for non-commercial use with API key. Paid licenses for commercial use."
      },
      "rateLimit": "500 req/hour (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.vagalume.com.br'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 20,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:27.600Z",
      "verifiedStatus": 503,
      "latencyMs": 2431
    },
    {
      "id": "dev-to",
      "name": "Dev.to API",
      "provider": "Dev.to",
      "category": "entertainment",
      "description": "Access Forem articles, users and other resources via API",
      "longDescription": "Access Forem articles, users and other resources via API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developers.forem.com",
      "docsUrl": "https://developers.forem.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free to use. No paid tiers; open API for DEV Community content."
      },
      "rateLimit": "3 write req/s; 10 read req/s",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developers.forem.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.127Z",
      "verifiedStatus": 200,
      "latencyMs": 1110
    },
    {
      "id": "favqs-com",
      "name": "FavQs.com API",
      "provider": "FavQs.com",
      "category": "entertainment",
      "description": "FavQs allows you to collect, discover and share your favorite quotes",
      "longDescription": "FavQs allows you to collect, discover and share your favorite quotes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://favqs.com",
      "docsUrl": "https://favqs.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with API key. No paid tiers; favorite quotes community API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://favqs.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.243Z",
      "verifiedStatus": 200,
      "latencyMs": 1186
    },
    {
      "id": "icanhazdadjoke",
      "name": "icanhazdadjoke API",
      "provider": "icanhazdadjoke",
      "category": "entertainment",
      "description": "The largest selection of dad jokes on the internet",
      "longDescription": "The largest selection of dad jokes on the internet",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://icanhazdadjoke.com",
      "docsUrl": "https://icanhazdadjoke.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://icanhazdadjoke.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.111Z",
      "verifiedStatus": 200,
      "latencyMs": 931
    },
    {
      "id": "kanye",
      "name": "kanye.rest API",
      "provider": "kanye.rest",
      "category": "entertainment",
      "description": "REST API for random Kanye West quotes",
      "longDescription": "REST API for random Kanye West quotes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://kanye.rest",
      "docsUrl": "https://kanye.rest",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://kanye.rest'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.158Z",
      "verifiedStatus": 200,
      "latencyMs": 846
    },
    {
      "id": "kimiquotes",
      "name": "kimiquotes API",
      "provider": "kimiquotes",
      "category": "entertainment",
      "description": "Team radio and interview quotes by Finnish F1 legend Kimi Räikkönen",
      "longDescription": "Team radio and interview quotes by Finnish F1 legend Kimi Räikkönen",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://kimiquotes.herokuapp.com",
      "docsUrl": "https://kimiquotes.herokuapp.com/doc",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://kimiquotes.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.397Z",
      "verifiedStatus": 404,
      "latencyMs": 856
    },
    {
      "id": "quote-garden",
      "name": "Quote Garden API",
      "provider": "Quote Garden",
      "category": "entertainment",
      "description": "REST API for more than 5000 famous quotes",
      "longDescription": "REST API for more than 5000 famous quotes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://pprathameshmore.github.io",
      "docsUrl": "https://pprathameshmore.github.io/QuoteGarden/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://pprathameshmore.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 33,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:19:30.731Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "quoteclear",
      "name": "quoteclear API",
      "provider": "quoteclear",
      "category": "entertainment",
      "description": "Ever-growing list of James Clear quotes from the 3-2-1 Newsletter",
      "longDescription": "Ever-growing list of James Clear quotes from the 3-2-1 Newsletter",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://quoteclear.web.app",
      "docsUrl": "https://quoteclear.web.app/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://quoteclear.web.app'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.236Z",
      "verifiedStatus": 404,
      "latencyMs": 526
    },
    {
      "id": "they-said-so-quotes",
      "name": "They Said So Quotes API",
      "provider": "They Said So Quotes",
      "category": "entertainment",
      "description": "Quotes Trusted by many fortune brands around the world",
      "longDescription": "Quotes Trusted by many fortune brands around the world",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://theysaidso.com",
      "docsUrl": "https://theysaidso.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://theysaidso.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:31.584Z",
      "verifiedStatus": 200,
      "latencyMs": 1862
    },
    {
      "id": "zen-quotes",
      "name": "Zen Quotes API",
      "provider": "Zen Quotes",
      "category": "entertainment",
      "description": "Large collection of Zen quotes for inspiration",
      "longDescription": "Large collection of Zen quotes for inspiration",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://zenquotes.io",
      "docsUrl": "https://zenquotes.io/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://zenquotes.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.431Z",
      "verifiedStatus": 200,
      "latencyMs": 708
    },
    {
      "id": "dagpi",
      "name": "Dagpi API",
      "provider": "Dagpi",
      "category": "entertainment",
      "description": "A fast and easy to use API. Enjoy powerful image manipulation and high quality datasets with reliability and security.",
      "longDescription": "A fast and easy to use API. Enjoy powerful image manipulation and high quality datasets with reliability and security.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://dagpi.xyz",
      "docsUrl": "https://dagpi.xyz",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 500 req/day. Paid tiers available via RapidAPI for image processing."
      },
      "rateLimit": "500 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://dagpi.xyz'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.609Z",
      "verifiedStatus": 200,
      "latencyMs": 716
    },
    {
      "id": "duply",
      "name": "Duply API",
      "provider": "Duply",
      "category": "entertainment",
      "description": "Generate, Edit, Scale and Manage Images and Videos Smarter & Faster",
      "longDescription": "Generate, Edit, Scale and Manage Images and Videos Smarter & Faster",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://duply.co",
      "docsUrl": "https://duply.co/docs#getting-started-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 100 images/month. Starter $9/mo (1,000 images), Pro $29/mo, Business $79/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://duply.co'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.701Z",
      "verifiedStatus": 200,
      "latencyMs": 741
    },
    {
      "id": "dynapictures",
      "name": "DynaPictures API",
      "provider": "DynaPictures",
      "category": "entertainment",
      "description": "Generate Hundreds of Personalized Images in Minutes",
      "longDescription": "Generate Hundreds of Personalized Images in Minutes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://dynapictures.com",
      "docsUrl": "https://dynapictures.com/docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 100 renders/month. Starter $19/mo (2,500 renders), Pro $49/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://dynapictures.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:31.049Z",
      "verifiedStatus": 200,
      "latencyMs": 984
    },
    {
      "id": "getty-images",
      "name": "Getty Images API",
      "provider": "Getty Images",
      "category": "entertainment",
      "description": "Build applications using the world's most powerful imagery",
      "longDescription": "Build applications using the world's most powerful imagery",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://developers.gettyimages.com",
      "docsUrl": "http://developers.gettyimages.com/en/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid API. Embed API free for non-commercial use; commercial licensing required for commercial use."
      },
      "rateLimit": "Based on license tier",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://developers.gettyimages.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:31.580Z",
      "verifiedStatus": 200,
      "latencyMs": 1469
    },
    {
      "id": "placekeanu",
      "name": "PlaceKeanu API",
      "provider": "PlaceKeanu",
      "category": "entertainment",
      "description": "Resizable Keanu Reeves placeholder images with grayscale and young Keanu options",
      "longDescription": "Resizable Keanu Reeves placeholder images with grayscale and young Keanu options",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://placekeanu.com",
      "docsUrl": "https://placekeanu.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://placekeanu.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:30.843Z",
      "verifiedStatus": 200,
      "latencyMs": 716
    },
    {
      "id": "sirv",
      "name": "Sirv API",
      "provider": "Sirv",
      "category": "entertainment",
      "description": "Image management solutions like optimization, manipulation, hosting",
      "longDescription": "Image management solutions like optimization, manipulation, hosting",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://apidocs.sirv.com",
      "docsUrl": "https://apidocs.sirv.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 500 MB storage, 2 GB bandwidth. Paid from $9/mo (10 GB storage)."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://apidocs.sirv.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:31.219Z",
      "verifiedStatus": 200,
      "latencyMs": 1061
    },
    {
      "id": "balldontlie",
      "name": "balldontlie API",
      "provider": "balldontlie",
      "category": "entertainment",
      "description": "Balldontlie provides access to stats data from the NBA",
      "longDescription": "Balldontlie provides access to stats data from the NBA",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.balldontlie.io",
      "docsUrl": "https://www.balldontlie.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.balldontlie.io'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:36.567Z",
      "verifiedStatus": 200,
      "latencyMs": 1723
    },
    {
      "id": "cloudbet",
      "name": "Cloudbet API",
      "provider": "Cloudbet",
      "category": "entertainment",
      "description": "Official Cloudbet API provides real-time sports odds and betting API to place bets programmatically",
      "longDescription": "Official Cloudbet API provides real-time sports odds and betting API to place bets programmatically",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.cloudbet.com",
      "docsUrl": "https://www.cloudbet.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Cloudbet account. Crypto sports betting odds and casino API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.cloudbet.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:36.589Z",
      "verifiedStatus": 200,
      "latencyMs": 1680
    },
    {
      "id": "collegefootballdata-com",
      "name": "CollegeFootballData.com API",
      "provider": "CollegeFootballData.com",
      "category": "entertainment",
      "description": "Unofficial detailed American college football statistics, records, and results API",
      "longDescription": "Unofficial detailed American college football statistics, records, and results API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://collegefootballdata.com",
      "docsUrl": "https://collegefootballdata.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Patreon support requested. Open access to college football stats, scores, and analytics."
      },
      "rateLimit": "Not enforced; Patreon support appreciated",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://collegefootballdata.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:36.578Z",
      "verifiedStatus": 200,
      "latencyMs": 1484
    },
    {
      "id": "ergast-f1",
      "name": "Ergast F1 API",
      "provider": "Ergast F1",
      "category": "entertainment",
      "description": "F1 data from the beginning of the world championships in 1950",
      "longDescription": "F1 data from the beginning of the world championships in 1950",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://ergast.com",
      "docsUrl": "http://ergast.com/mrd/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://ergast.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.116Z",
      "verifiedStatus": 404,
      "latencyMs": 1902
    },
    {
      "id": "football-soccer-videos",
      "name": "Football (Soccer) Videos API",
      "provider": "Football (Soccer) Videos",
      "category": "entertainment",
      "description": "Embed codes for goals and highlights from Premier League, Bundesliga, Serie A and many more",
      "longDescription": "Embed codes for goals and highlights from Premier League, Bundesliga, Serie A and many more",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.scorebat.com",
      "docsUrl": "https://www.scorebat.com/video-api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.scorebat.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:36.581Z",
      "verifiedStatus": 200,
      "latencyMs": 1258
    },
    {
      "id": "football-data",
      "name": "Football-Data API",
      "provider": "Football-Data",
      "category": "entertainment",
      "description": "Football data with matches info, players, teams, and competitions",
      "longDescription": "Football data with matches info, players, teams, and competitions",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.football-data.org",
      "docsUrl": "https://www.football-data.org",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier: 10 req/min, limited competitions. Paid from €50/mo for full competition coverage."
      },
      "rateLimit": "10 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.football-data.org'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.200Z",
      "verifiedStatus": 200,
      "latencyMs": 1819
    },
    {
      "id": "jcdecaux-bike",
      "name": "JCDecaux Bike API",
      "provider": "JCDecaux Bike",
      "category": "entertainment",
      "description": "JCDecaux's self-service bicycles",
      "longDescription": "JCDecaux's self-service bicycles",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.jcdecaux.com",
      "docsUrl": "https://developer.jcdecaux.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with JCDecaux API key. Access to bike-sharing station data."
      },
      "rateLimit": "1 req/s",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.jcdecaux.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 23,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.078Z",
      "verifiedStatus": 501,
      "latencyMs": 1647
    },
    {
      "id": "nba-stats",
      "name": "NBA Stats API",
      "provider": "NBA Stats",
      "category": "entertainment",
      "description": "API marketplace and ready to run app backends for your mobile app and website.",
      "longDescription": "API marketplace and ready to run app backends for your mobile app and website.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://any-api.com",
      "docsUrl": "https://any-api.com/nba_com/nba_com/docs/API_Description",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://any-api.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:39.053Z",
      "verifiedStatus": 200,
      "latencyMs": 3367
    },
    {
      "id": "oddsmagnet",
      "name": "Oddsmagnet API",
      "provider": "Oddsmagnet",
      "category": "entertainment",
      "description": "Odds history from multiple UK bookmakers",
      "longDescription": "Odds history from multiple UK bookmakers",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://data.oddsmagnet.com",
      "docsUrl": "https://data.oddsmagnet.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://data.oddsmagnet.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 10,
      "scorePricing": 90,
      "score": 36,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:40.814Z",
      "verifiedStatus": 403,
      "latencyMs": 5014
    },
    {
      "id": "openligadb",
      "name": "OpenLigaDB API",
      "provider": "OpenLigaDB",
      "category": "entertainment",
      "description": "Api zum Abrufen von Daten zur Fußball-Bundesliga und vielen weiteren Ligen",
      "longDescription": "Api zum Abrufen von Daten zur Fußball-Bundesliga und vielen weiteren Ligen",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.openligadb.de",
      "docsUrl": "https://www.openligadb.de",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.openligadb.de'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 52,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:38.203Z",
      "verifiedStatus": 200,
      "latencyMs": 1984
    },
    {
      "id": "sport-data",
      "name": "Sport Data API",
      "provider": "Sport Data",
      "category": "entertainment",
      "description": "Get sports data from all over the world",
      "longDescription": "Get sports data from all over the world",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://sportdataapi.com",
      "docsUrl": "https://sportdataapi.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Free trial available. Pro plans from $15/mo depending on sport coverage."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://sportdataapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.199Z",
      "verifiedStatus": 404,
      "latencyMs": 817
    },
    {
      "id": "sportmonks-cricket",
      "name": "Sportmonks Cricket API",
      "provider": "Sportmonks Cricket",
      "category": "entertainment",
      "description": "Live cricket score, player statistics and fantasy API",
      "longDescription": "Live cricket score, player statistics and fantasy API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.sportmonks.com",
      "docsUrl": "https://docs.sportmonks.com/cricket/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free trial 14 days. Starter €19/mo, Dicky Bird €49/mo, Donald Duck €99/mo."
      },
      "rateLimit": "60 req/min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.sportmonks.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 22,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:41.027Z",
      "verifiedStatus": 200,
      "latencyMs": 4553
    },
    {
      "id": "squiggle",
      "name": "Squiggle API",
      "provider": "Squiggle",
      "category": "entertainment",
      "description": "Fixtures, results and predictions for Australian Football League matches",
      "longDescription": "Fixtures, results and predictions for Australian Football League matches",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.squiggle.com.au",
      "docsUrl": "https://api.squiggle.com.au",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.squiggle.com.au'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.204Z",
      "verifiedStatus": 200,
      "latencyMs": 671
    },
    {
      "id": "strava",
      "name": "Strava API",
      "provider": "Strava",
      "category": "entertainment",
      "description": "Connect with athletes, activities and more",
      "longDescription": "Connect with athletes, activities and more",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://strava.github.io",
      "docsUrl": "https://strava.github.io/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier: 100 req/15min, 1,000 req/day. No paid API tiers; premium is for athletes."
      },
      "rateLimit": "100 req/15min · 1,000 req/day",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://strava.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 45,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.025Z",
      "verifiedStatus": 404,
      "latencyMs": 458
    },
    {
      "id": "thesportsdb",
      "name": "TheSportsDB API",
      "provider": "TheSportsDB",
      "category": "entertainment",
      "description": "TheSportsDB is an open, crowd sourced Sports Database with Events, TV listings, Artwork, Scores and a free Sports API in JSON.",
      "longDescription": "TheSportsDB is an open, crowd sourced Sports Database with Events, TV listings, Artwork, Scores and a free Sports API in JSON.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.thesportsdb.com",
      "docsUrl": "https://www.thesportsdb.com/api.php",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: public endpoints via Patreon key. Patreon tiers from $3/mo for additional access."
      },
      "rateLimit": "Undocumented; Patreon supporters get higher limits",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.thesportsdb.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.337Z",
      "verifiedStatus": 200,
      "latencyMs": 759
    },
    {
      "id": "tredict",
      "name": "Tredict API",
      "provider": "Tredict",
      "category": "entertainment",
      "description": "Get and set activities, health data and more",
      "longDescription": "Get and set activities, health data and more",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.tredict.com",
      "docsUrl": "https://www.tredict.com/blog/oauth_docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer account for sports training data."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.tredict.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.488Z",
      "verifiedStatus": 200,
      "latencyMs": 907
    },
    {
      "id": "wger",
      "name": "Wger API",
      "provider": "Wger",
      "category": "entertainment",
      "description": "Workout manager data as exercises, muscles or equipment",
      "longDescription": "Workout manager data as exercises, muscles or equipment",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://wger.de",
      "docsUrl": "https://wger.de/en/software/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open-source. Workout manager API; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://wger.de'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:37.791Z",
      "verifiedStatus": 200,
      "latencyMs": 1201
    },
    {
      "id": "harry-potter-charactes",
      "name": "Harry Potter Charactes API",
      "provider": "Harry Potter Charactes",
      "category": "entertainment",
      "description": "Harry Potter Characters Data with with imagery",
      "longDescription": "Harry Potter Characters Data with with imagery",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://hp-api.herokuapp.com",
      "docsUrl": "https://hp-api.herokuapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://hp-api.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:45.892Z",
      "verifiedStatus": 404,
      "latencyMs": 1378
    },
    {
      "id": "owen-wilson-wow",
      "name": "Owen Wilson Wow API",
      "provider": "Owen Wilson Wow",
      "category": "entertainment",
      "description": "API for actor Owen Wilson's \"wow\" exclamations in movies",
      "longDescription": "API for actor Owen Wilson's \"wow\" exclamations in movies",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://owen-wilson-wow-api.herokuapp.com",
      "docsUrl": "https://owen-wilson-wow-api.herokuapp.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://owen-wilson-wow-api.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:45.901Z",
      "verifiedStatus": 404,
      "latencyMs": 1345
    },
    {
      "id": "stream",
      "name": "Stream API",
      "provider": "Stream",
      "category": "entertainment",
      "description": "Czech internet television, films, series and online videos for free",
      "longDescription": "Czech internet television, films, series and online videos for free",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.stream.cz",
      "docsUrl": "https://api.stream.cz/graphiql",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.stream.cz'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 43,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:46.436Z",
      "verifiedStatus": 404,
      "latencyMs": 1799
    },
    {
      "id": "stromberg-quotes",
      "name": "Stromberg Quotes API",
      "provider": "Stromberg Quotes",
      "category": "entertainment",
      "description": "Returns Stromberg quotes and more",
      "longDescription": "Returns Stromberg quotes and more",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.stromberg-api.de",
      "docsUrl": "https://www.stromberg-api.de/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.stromberg-api.de'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 39,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.175Z",
      "verifiedStatus": 200,
      "latencyMs": 4505
    },
    {
      "id": "sw",
      "name": "SWAPI API",
      "provider": "SWAPI",
      "category": "entertainment",
      "description": "All the Star Wars data you've ever wanted",
      "longDescription": "All the Star Wars data you've ever wanted",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://swapi.dev",
      "docsUrl": "https://swapi.dev/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://swapi.dev'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:46.879Z",
      "verifiedStatus": 200,
      "latencyMs": 1921
    },
    {
      "id": "thrones",
      "name": "ThronesApi API",
      "provider": "ThronesApi",
      "category": "entertainment",
      "description": "Game Of Thrones Characters Data with imagery",
      "longDescription": "Game Of Thrones Characters Data with imagery",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://thronesapi.com",
      "docsUrl": "https://thronesapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://thronesapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:46.638Z",
      "verifiedStatus": 200,
      "latencyMs": 1581
    },
    {
      "id": "watchmode",
      "name": "Watchmode API",
      "provider": "Watchmode",
      "category": "entertainment",
      "description": "API for finding out the streaming availability of movies & shows",
      "longDescription": "API for finding out the streaming availability of movies & shows",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.watchmode.com",
      "docsUrl": "https://api.watchmode.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1,000 req/month. Starter $4/mo (2,500 req), Essentials $9/mo (10,000 req), Pro $29/mo."
      },
      "rateLimit": "1,000 req/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.watchmode.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:46.676Z",
      "verifiedStatus": 200,
      "latencyMs": 1556
    },
    {
      "id": "cats",
      "name": "Cats API",
      "provider": "Cats",
      "category": "entertainment",
      "description": "Pictures of cats from Tumblr",
      "longDescription": "Pictures of cats from Tumblr",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.thecatapi.com",
      "docsUrl": "https://docs.thecatapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free tier: 10,000 req/month. Paid from $20/mo for higher limits."
      },
      "rateLimit": "10,000 req/month (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.thecatapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.837Z",
      "verifiedStatus": 200,
      "latencyMs": 3369
    },
    {
      "id": "http-cat",
      "name": "HTTP Cat API",
      "provider": "HTTP Cat",
      "category": "entertainment",
      "description": "An API for the awesome HTTP Cats! Use it in your website to show funny error messages.",
      "longDescription": "An API for the awesome HTTP Cats! Use it in your website to show funny error messages.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://http.cat",
      "docsUrl": "https://http.cat/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://http.cat'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:48.874Z",
      "verifiedStatus": 200,
      "latencyMs": 2236
    },
    {
      "id": "placebear",
      "name": "PlaceBear API",
      "provider": "PlaceBear",
      "category": "entertainment",
      "description": "Bear-themed placeholder images for developers",
      "longDescription": "Bear-themed placeholder images for developers",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://placebear.com",
      "docsUrl": "https://placebear.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://placebear.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.157Z",
      "verifiedStatus": 200,
      "latencyMs": 2489
    },
    {
      "id": "placedog",
      "name": "PlaceDog API",
      "provider": "PlaceDog",
      "category": "entertainment",
      "description": "Placeholder Dog pictures",
      "longDescription": "Placeholder Dog pictures",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://place.dog",
      "docsUrl": "https://place.dog",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://place.dog'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.484Z",
      "verifiedStatus": 200,
      "latencyMs": 2808
    },
    {
      "id": "placekitten",
      "name": "PlaceKitten API",
      "provider": "PlaceKitten",
      "category": "entertainment",
      "description": "Placeholder Kitten pictures",
      "longDescription": "Placeholder Kitten pictures",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://placekitten.com",
      "docsUrl": "https://placekitten.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://placekitten.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 39,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.265Z",
      "verifiedStatus": 521,
      "latencyMs": 2581
    },
    {
      "id": "randomdog",
      "name": "RandomDog API",
      "provider": "RandomDog",
      "category": "entertainment",
      "description": "Random pictures of dogs",
      "longDescription": "Random pictures of dogs",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://random.dog",
      "docsUrl": "https://random.dog/woof.json",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://random.dog'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.619Z",
      "verifiedStatus": 200,
      "latencyMs": 2740
    },
    {
      "id": "randomduck",
      "name": "RandomDuck API",
      "provider": "RandomDuck",
      "category": "entertainment",
      "description": "Random pictures of ducks",
      "longDescription": "Random pictures of ducks",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://random-d.uk",
      "docsUrl": "https://random-d.uk/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://random-d.uk'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.762Z",
      "verifiedStatus": 200,
      "latencyMs": 2838
    },
    {
      "id": "randomfox",
      "name": "RandomFox API",
      "provider": "RandomFox",
      "category": "entertainment",
      "description": "Random pictures of foxes",
      "longDescription": "Random pictures of foxes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://randomfox.ca",
      "docsUrl": "https://randomfox.ca/floof/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://randomfox.ca'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.531Z",
      "verifiedStatus": 200,
      "latencyMs": 2574
    },
    {
      "id": "animefacts",
      "name": "AnimeFacts API",
      "provider": "AnimeFacts",
      "category": "entertainment",
      "description": "Anime Facts (over 100+)",
      "longDescription": "Anime Facts (over 100+)",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://chandan-02.github.io",
      "docsUrl": "https://chandan-02.github.io/anime-facts-rest-api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://chandan-02.github.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.464Z",
      "verifiedStatus": 404,
      "latencyMs": 1987
    },
    {
      "id": "catboy",
      "name": "Catboy API",
      "provider": "Catboy",
      "category": "entertainment",
      "description": "Neko images, funny GIFs & more",
      "longDescription": "Neko images, funny GIFs & more",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://catboys.com",
      "docsUrl": "https://catboys.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://catboys.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.246Z",
      "verifiedStatus": 200,
      "latencyMs": 2756
    },
    {
      "id": "jikan",
      "name": "Jikan API",
      "provider": "Jikan",
      "category": "entertainment",
      "description": "Jikan is an unofficial MyAnimeList REST based API",
      "longDescription": "Jikan is an unofficial MyAnimeList REST based API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://jikan.moe",
      "docsUrl": "https://jikan.moe",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://jikan.moe'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:49.655Z",
      "verifiedStatus": 200,
      "latencyMs": 1948
    },
    {
      "id": "mangadex",
      "name": "MangaDex API",
      "provider": "MangaDex",
      "category": "entertainment",
      "description": "Manga Database and Community",
      "longDescription": "Manga Database and Community",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.mangadex.org",
      "docsUrl": "https://api.mangadex.org/docs.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Community-run manga reading API with no paid tiers."
      },
      "rateLimit": "5 req/s per user",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.mangadex.org'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.667Z",
      "verifiedStatus": 200,
      "latencyMs": 2551
    },
    {
      "id": "cooper-hewitt",
      "name": "Cooper Hewitt API",
      "provider": "Cooper Hewitt",
      "category": "entertainment",
      "description": "Smithsonian Design Museum",
      "longDescription": "Smithsonian Design Museum",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://collection.cooperhewitt.org",
      "docsUrl": "https://collection.cooperhewitt.org/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. Smithsonian Cooper Hewitt museum collection API."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://collection.cooperhewitt.org'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.187Z",
      "verifiedStatus": 500,
      "latencyMs": 703
    },
    {
      "id": "lordicon",
      "name": "Lordicon API",
      "provider": "Lordicon",
      "category": "entertainment",
      "description": "Lordicon is an animated icon library with the 42,300+ premium and free animated icons, perfect for enhancing web, mobile, or content design projects.",
      "longDescription": "Lordicon is an animated icon library with the 42,300+ premium and free animated icons, perfect for enhancing web, mobile, or content design projects.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://lordicon.com",
      "docsUrl": "https://lordicon.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://lordicon.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 53,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.605Z",
      "verifiedStatus": 200,
      "latencyMs": 1074
    },
    {
      "id": "word-cloud",
      "name": "Word Cloud API",
      "provider": "Word Cloud",
      "category": "entertainment",
      "description": "Generate word clouds fast and easy with Word Cloud API.",
      "longDescription": "Generate word clouds fast and easy with Word Cloud API.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://wordcloudapi.com",
      "docsUrl": "https://wordcloudapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Free tier available; Word Cloud API plans based on usage volume."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://wordcloudapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.285Z",
      "verifiedStatus": 200,
      "latencyMs": 665
    },
    {
      "id": "xcolors",
      "name": "xColors API",
      "provider": "xColors",
      "category": "entertainment",
      "description": "Generate & convert colors",
      "longDescription": "Generate & convert colors",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://x-colors.herokuapp.com",
      "docsUrl": "https://x-colors.herokuapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://x-colors.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 44,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:50.386Z",
      "verifiedStatus": 404,
      "latencyMs": 731
    },
    {
      "id": "imgflip",
      "name": "Imgflip API",
      "provider": "Imgflip",
      "category": "entertainment",
      "description": "Gets an array of popular memes",
      "longDescription": "Gets an array of popular memes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://imgflip.com",
      "docsUrl": "https://imgflip.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://imgflip.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:52.384Z",
      "verifiedStatus": 200,
      "latencyMs": 659
    },
    {
      "id": "random-useless-facts",
      "name": "Random Useless Facts API",
      "provider": "Random Useless Facts",
      "category": "entertainment",
      "description": "Get useless, but true facts",
      "longDescription": "Get useless, but true facts",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://uselessfacts.jsph.pl",
      "docsUrl": "https://uselessfacts.jsph.pl/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://uselessfacts.jsph.pl'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.947Z",
      "verifiedStatus": 200,
      "latencyMs": 2155
    },
    {
      "id": "brawl-stars",
      "name": "Brawl Stars API",
      "provider": "Brawl Stars",
      "category": "entertainment",
      "description": "Brawl Stars Game Information",
      "longDescription": "Brawl Stars Game Information",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.brawlstars.com",
      "docsUrl": "https://developer.brawlstars.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Supercell developer account. Access to player, club, and brawler statistics."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.brawlstars.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.204Z",
      "verifiedStatus": 200,
      "latencyMs": 1050
    },
    {
      "id": "cheapshark",
      "name": "CheapShark API",
      "provider": "CheapShark",
      "category": "entertainment",
      "description": "Digital Game Deals, Compare PC game prices on Steam, GreenManGaming, Gamer",
      "longDescription": "Digital Game Deals, Compare PC game prices on Steam, GreenManGaming, Gamer",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.cheapshark.com",
      "docsUrl": "https://www.cheapshark.com/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.cheapshark.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.161Z",
      "verifiedStatus": 200,
      "latencyMs": 878
    },
    {
      "id": "chess-com",
      "name": "Chess.com API",
      "provider": "Chess.com",
      "category": "entertainment",
      "description": "Chess.com read-only REST API",
      "longDescription": "Chess.com read-only REST API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.chess.com",
      "docsUrl": "https://www.chess.com/news/view/published-data-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.chess.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.173Z",
      "verifiedStatus": 200,
      "latencyMs": 819
    },
    {
      "id": "clash-royale",
      "name": "Clash Royale API",
      "provider": "Clash Royale",
      "category": "entertainment",
      "description": "Clash Royale Game Information",
      "longDescription": "Clash Royale Game Information",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.clashroyale.com",
      "docsUrl": "https://developer.clashroyale.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Supercell developer account. Player, clan, and battle statistics."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.clashroyale.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.373Z",
      "verifiedStatus": 200,
      "latencyMs": 989
    },
    {
      "id": "fifa-ultimate-team",
      "name": "FIFA Ultimate Team API",
      "provider": "FIFA Ultimate Team",
      "category": "entertainment",
      "description": "FIFA Ultimate Team items API",
      "longDescription": "FIFA Ultimate Team items API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.easports.com",
      "docsUrl": "https://www.easports.com/fifa/ultimate-team/api/fut/item",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.easports.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:54.202Z",
      "verifiedStatus": 200,
      "latencyMs": 1771
    },
    {
      "id": "freetogame",
      "name": "FreeToGame API",
      "provider": "FreeToGame",
      "category": "entertainment",
      "description": "FreeToGame provides access to the best free-to-play games while rewarding gamers with free premium in-game loot and special offers.",
      "longDescription": "FreeToGame provides access to the best free-to-play games while rewarding gamers with free premium in-game loot and special offers.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.freetogame.com",
      "docsUrl": "https://www.freetogame.com/api-doc",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.freetogame.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 44,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.536Z",
      "verifiedStatus": 403,
      "latencyMs": 1018
    },
    {
      "id": "genshin-impact",
      "name": "Genshin Impact API",
      "provider": "Genshin Impact",
      "category": "entertainment",
      "description": "A fan-made Genshin Impact API for easy access to game data.",
      "longDescription": "A fan-made Genshin Impact API for easy access to game data.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://genshin.dev",
      "docsUrl": "https://genshin.dev",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://genshin.dev'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.370Z",
      "verifiedStatus": 200,
      "latencyMs": 800
    },
    {
      "id": "guild-wars-2",
      "name": "Guild Wars 2 API",
      "provider": "Guild Wars 2",
      "category": "entertainment",
      "description": "Guild Wars 2 Game Information",
      "longDescription": "Guild Wars 2 Game Information",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://wiki.guildwars2.com",
      "docsUrl": "https://wiki.guildwars2.com/wiki/API:Main",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. No authentication required for public endpoints; character data needs key."
      },
      "rateLimit": "600 req/min per IP",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://wiki.guildwars2.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:54.209Z",
      "verifiedStatus": 200,
      "latencyMs": 1638
    },
    {
      "id": "hearthstone",
      "name": "Hearthstone API",
      "provider": "Hearthstone",
      "category": "entertainment",
      "description": "Hearthstone Cards Information",
      "longDescription": "Hearthstone Cards Information",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://hearthstoneapi.com",
      "docsUrl": "http://hearthstoneapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free via RapidAPI. Some tiers capped; check RapidAPI for current plan pricing."
      },
      "rateLimit": "Varies by RapidAPI plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://hearthstoneapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:54.108Z",
      "verifiedStatus": 200,
      "latencyMs": 1531
    },
    {
      "id": "humor",
      "name": "Humor API",
      "provider": "Humor",
      "category": "entertainment",
      "description": "Humor, Jokes, and Memes",
      "longDescription": "Humor, Jokes, and Memes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://humorapi.com",
      "docsUrl": "https://humorapi.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 100 req/day. Basic $5/mo, Moderate $10/mo, Haha $20/mo for more requests."
      },
      "rateLimit": "100 req/day (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://humorapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.497Z",
      "verifiedStatus": 200,
      "latencyMs": 856
    },
    {
      "id": "hypixel",
      "name": "Hypixel API",
      "provider": "Hypixel",
      "category": "entertainment",
      "description": "Hypixel player stats",
      "longDescription": "Hypixel player stats",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://api.hypixel.net",
      "docsUrl": "https://api.hypixel.net/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Hypixel account for personal use. No paid tiers."
      },
      "rateLimit": "120 req/min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.hypixel.net'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 37,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.631Z",
      "verifiedStatus": 200,
      "latencyMs": 955
    },
    {
      "id": "hytale",
      "name": "Hytale API",
      "provider": "Hytale",
      "category": "entertainment",
      "description": "Hytale blog posts and jobs",
      "longDescription": "Hytale blog posts and jobs",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://hytale-api.com",
      "docsUrl": "https://hytale-api.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://hytale-api.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 33,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:20:02.880Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "mod-io",
      "name": "mod.io API",
      "provider": "mod.io",
      "category": "entertainment",
      "description": "We&#x27;re here to enhance your game by unlocking mods or user generated content (UGC). Whether it&#x27;s empowering players to create new skins, game modes, VFX, SFX or anything else, our service provides the framework for player customization and creativity within your game.",
      "longDescription": "We&#x27;re here to enhance your game by unlocking mods or user generated content (UGC). Whether it&#x27;s empowering players to create new skins, game modes, VFX, SFX or anything else, our service provides the framework for player customization and creativity within your game.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.mod.io",
      "docsUrl": "https://docs.mod.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for game developers. No usage fees; revenue share model for monetized mods."
      },
      "rateLimit": "60 req/min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.mod.io'",
      "sampleResponse": "{}",
      "scoreDepth": 28,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.671Z",
      "verifiedStatus": 200,
      "latencyMs": 928
    },
    {
      "id": "monster-hunter-world",
      "name": "Monster Hunter World API",
      "provider": "Monster Hunter World",
      "category": "entertainment",
      "description": "Monster Hunter World data",
      "longDescription": "Monster Hunter World data",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://docs.mhw-db.com",
      "docsUrl": "https://docs.mhw-db.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.mhw-db.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.654Z",
      "verifiedStatus": 200,
      "latencyMs": 721
    },
    {
      "id": "path-of-exile",
      "name": "Path of Exile API",
      "provider": "Path of Exile",
      "category": "entertainment",
      "description": "Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.",
      "longDescription": "Path of Exile is a free online-only action RPG under development by Grinding Gear Games in New Zealand.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.pathofexile.com",
      "docsUrl": "https://www.pathofexile.com/developer/docs",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free via GGG developer program. Access to item, trade, and league data."
      },
      "rateLimit": "45 req/15s, 240 req/4min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.pathofexile.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.810Z",
      "verifiedStatus": 200,
      "latencyMs": 648
    },
    {
      "id": "pok-mon-tcg",
      "name": "Pokémon TCG API",
      "provider": "Pokémon TCG",
      "category": "entertainment",
      "description": "The ultimate Pokémon Trading Card Game developer resource. The Pokémon TCG API allows developers to easily consume Pokémon card and set data in JSON format.",
      "longDescription": "The ultimate Pokémon Trading Card Game developer resource. The Pokémon TCG API allows developers to easily consume Pokémon card and set data in JSON format.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://pokemontcg.io",
      "docsUrl": "https://pokemontcg.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://pokemontcg.io'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 60,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.860Z",
      "verifiedStatus": 200,
      "latencyMs": 686
    },
    {
      "id": "pubg",
      "name": "PUBG API",
      "provider": "PUBG",
      "category": "entertainment",
      "description": "Start building your own website today using official PUBG data.",
      "longDescription": "Start building your own website today using official PUBG data.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.pubg.com",
      "docsUrl": "https://developer.pubg.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with PUBG developer account. Player stats, match data, and leaderboards."
      },
      "rateLimit": "10 req/min (free)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.pubg.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.977Z",
      "verifiedStatus": 200,
      "latencyMs": 784
    },
    {
      "id": "scryfall",
      "name": "Scryfall API",
      "provider": "Scryfall",
      "category": "entertainment",
      "description": "A fast, powerful, comprehensive Magic: The Gathering card search.",
      "longDescription": "A fast, powerful, comprehensive Magic: The Gathering card search.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://scryfall.com",
      "docsUrl": "https://scryfall.com/docs/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://scryfall.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 57,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:53.962Z",
      "verifiedStatus": 200,
      "latencyMs": 757
    },
    {
      "id": "steam",
      "name": "Steam API",
      "provider": "Steam",
      "category": "entertainment",
      "description": "An automatically generated list of Steam Web API interfaces, methods and parameters. Allows you to craft requests in the browser.",
      "longDescription": "An automatically generated list of Steam Web API interfaces, methods and parameters. Allows you to craft requests in the browser.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://steamapi.xpaw.me",
      "docsUrl": "https://steamapi.xpaw.me/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free to use. No paid tiers; open access for game, user, and achievement data."
      },
      "rateLimit": "100,000 req/day (unofficial guideline)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://steamapi.xpaw.me'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:54.048Z",
      "verifiedStatus": 200,
      "latencyMs": 678
    },
    {
      "id": "tetr-io",
      "name": "TETR.IO API",
      "provider": "TETR.IO",
      "category": "entertainment",
      "description": "Puzzle together in this free-to-win modern yet familiar online stacker in the same genre as Tetris. Play multiplayer games against friends and foes all over the world, or claim a spot on the leaderboards - the stacker future is yours!",
      "longDescription": "Puzzle together in this free-to-win modern yet familiar online stacker in the same genre as Tetris. Play multiplayer games against friends and foes all over the world, or claim a spot on the leaderboards - the stacker future is yours!",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://tetr.io",
      "docsUrl": "https://tetr.io/about/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://tetr.io'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 60,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:54.032Z",
      "verifiedStatus": 200,
      "latencyMs": 659
    },
    {
      "id": "wargaming-net",
      "name": "Wargaming.net API",
      "provider": "Wargaming.net",
      "category": "entertainment",
      "description": "Wargaming.net info and stats",
      "longDescription": "Wargaming.net info and stats",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developers.wargaming.net",
      "docsUrl": "https://developers.wargaming.net/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Wargaming developer account. Access to World of Tanks, WoWs, WoWp data."
      },
      "rateLimit": "10 req/s per application",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developers.wargaming.net'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:54.704Z",
      "verifiedStatus": 200,
      "latencyMs": 1268
    },
    {
      "id": "xkcd",
      "name": "xkcd API",
      "provider": "xkcd",
      "category": "entertainment",
      "description": "Retrieve xkcd comics as JSON",
      "longDescription": "Retrieve xkcd comics as JSON",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://xkcd.com",
      "docsUrl": "https://xkcd.com/json.html",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://xkcd.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:19:54.089Z",
      "verifiedStatus": 200,
      "latencyMs": 591
    },
    {
      "id": "yu-gi-oh",
      "name": "Yu-Gi-Oh! API",
      "provider": "Yu-Gi-Oh!",
      "category": "entertainment",
      "description": "YGOPRODeck, your ultimate Yu-Gi-Oh! Database and Deck Share Site. Features a Deck Builder, Price Checker and hundreds of Yu-Gi-Oh! decks! We also host the most comprehensive Yu-Gi-Oh! Card Database available. For all things Yu-Gi-Oh!, check out YGOPRODeck.com",
      "longDescription": "YGOPRODeck, your ultimate Yu-Gi-Oh! Database and Deck Share Site. Features a Deck Builder, Price Checker and hundreds of Yu-Gi-Oh! decks! We also host the most comprehensive Yu-Gi-Oh! Card Database available. For all things Yu-Gi-Oh!, check out YGOPRODeck.com",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://db.ygoprodeck.com",
      "docsUrl": "https://db.ygoprodeck.com/api-guide/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://db.ygoprodeck.com'",
      "sampleResponse": "{}",
      "scoreDepth": 28,
      "scoreLatency": 0,
      "scorePricing": 90,
      "score": 38,
      "reachable": false,
      "verifiedAt": "2026-03-29T20:20:03.974Z",
      "verifiedStatus": null,
      "latencyMs": null
    },
    {
      "id": "7digital",
      "name": "7digital API",
      "provider": "7digital",
      "category": "entertainment",
      "description": "Api of Music store 7digital",
      "longDescription": "Api of Music store 7digital",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.7digital.com",
      "docsUrl": "https://docs.7digital.com/reference",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid B2B music API. Pricing by custom contract for music streaming and digital music data."
      },
      "rateLimit": "Based on contract",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.7digital.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 20,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:06.640Z",
      "verifiedStatus": 200,
      "latencyMs": 4275
    },
    {
      "id": "ai-mastering",
      "name": "AI Mastering API",
      "provider": "AI Mastering",
      "category": "entertainment",
      "description": "AI Mastering is an automated online audio mastering service using AI. Free mastering is available.",
      "longDescription": "AI Mastering is an automated online audio mastering service using AI. Free mastering is available.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://aimastering.com",
      "docsUrl": "https://aimastering.com/api_docs/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free trial available. Paid from ¥1,080/mo (30 masterings). Pay-as-you-go: ¥50/mastering."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://aimastering.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.446Z",
      "verifiedStatus": 200,
      "latencyMs": 1818
    },
    {
      "id": "bandcamp",
      "name": "Bandcamp API",
      "provider": "Bandcamp",
      "category": "entertainment",
      "description": "Discover amazing music and directly support the artists who make it.",
      "longDescription": "Discover amazing music and directly support the artists who make it.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://bandcamp.com",
      "docsUrl": "https://bandcamp.com/developer",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Bandcamp partner account. Limited public API; mostly for registered labels/artists."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://bandcamp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.002Z",
      "verifiedStatus": 200,
      "latencyMs": 1337
    },
    {
      "id": "genrenator",
      "name": "Genrenator API",
      "provider": "Genrenator",
      "category": "entertainment",
      "description": "Binary Jazz &#8211; A podcast by nerds",
      "longDescription": "Binary Jazz &#8211; A podcast by nerds",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://binaryjazz.us",
      "docsUrl": "https://binaryjazz.us/genrenator-api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://binaryjazz.us'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:03.986Z",
      "verifiedStatus": 200,
      "latencyMs": 1287
    },
    {
      "id": "ksoft-si-lyrics",
      "name": "KSoft.Si Lyrics API",
      "provider": "KSoft.Si Lyrics",
      "category": "entertainment",
      "description": "API to get lyrics for songs",
      "longDescription": "API to get lyrics for songs",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://docs.ksoft.si",
      "docsUrl": "https://docs.ksoft.si/api/lyrics-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Free tier available; KSoft.Si suite plans for Discord bot developers."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://docs.ksoft.si'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:05.906Z",
      "verifiedStatus": 200,
      "latencyMs": 3026
    },
    {
      "id": "advice-slip",
      "name": "Advice Slip API",
      "provider": "Advice Slip",
      "category": "entertainment",
      "description": "Generate random advice slips",
      "longDescription": "Generate random advice slips",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "http://api.adviceslip.com",
      "docsUrl": "http://api.adviceslip.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://api.adviceslip.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 90,
      "score": 39,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:07.633Z",
      "verifiedStatus": 200,
      "latencyMs": 4074
    },
    {
      "id": "biriyani-as-a-service",
      "name": "Biriyani As A Service API",
      "provider": "Biriyani As A Service",
      "category": "entertainment",
      "description": "Biriyani images placeholder",
      "longDescription": "Biriyani images placeholder",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://biriyani.anoram.com",
      "docsUrl": "https://biriyani.anoram.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://biriyani.anoram.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 38,
      "scorePricing": 90,
      "score": 44,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.540Z",
      "verifiedStatus": 503,
      "latencyMs": 843
    },
    {
      "id": "quotes-on-design",
      "name": "Quotes on Design API",
      "provider": "Quotes on Design",
      "category": "entertainment",
      "description": "Inspirational Quotes",
      "longDescription": "Inspirational Quotes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://quotesondesign.com",
      "docsUrl": "https://quotesondesign.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://quotesondesign.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.404Z",
      "verifiedStatus": 200,
      "latencyMs": 680
    },
    {
      "id": "udemy-instructor",
      "name": "Udemy(instructor) API",
      "provider": "Udemy(instructor)",
      "category": "entertainment",
      "description": "Learn in-demand skills with online courses, get professional certificates that advance your career, and explore courses in AI, coding, business and more.",
      "longDescription": "Learn in-demand skills with online courses, get professional certificates that advance your career, and explore courses in AI, coding, business and more.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.udemy.com",
      "docsUrl": "https://www.udemy.com/developers/instructor/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with Udemy instructor account. Access to your own course analytics and enrollments."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.udemy.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.507Z",
      "verifiedStatus": 200,
      "latencyMs": 760
    },
    {
      "id": "cheetaho",
      "name": "CheetahO API",
      "provider": "CheetahO",
      "category": "entertainment",
      "description": "CheetahO powerfull online image compressor and optimizer to reduse GIF, JPG, PNG images size. Improve website performance with lossy, lossless compression.",
      "longDescription": "CheetahO powerfull online image compressor and optimizer to reduse GIF, JPG, PNG images size. Improve website performance with lossy, lossless compression.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://cheetaho.com",
      "docsUrl": "https://cheetaho.com/docs/getting-started/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 1 MB/day image optimization. Lite $9/mo, Pro $29/mo, Elite $59/mo."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://cheetaho.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.542Z",
      "verifiedStatus": 200,
      "latencyMs": 556
    },
    {
      "id": "lorem-picsum",
      "name": "Lorem Picsum API",
      "provider": "Lorem Picsum",
      "category": "entertainment",
      "description": "Images from Unsplash",
      "longDescription": "Images from Unsplash",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://picsum.photos",
      "docsUrl": "https://picsum.photos/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://picsum.photos'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.708Z",
      "verifiedStatus": 200,
      "latencyMs": 706
    },
    {
      "id": "objectcut",
      "name": "ObjectCut API",
      "provider": "ObjectCut",
      "category": "entertainment",
      "description": "Automatic background removal real-time service powered by AI.",
      "longDescription": "Automatic background removal real-time service powered by AI.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://objectcut.com",
      "docsUrl": "https://objectcut.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 50 req/month. Starter $9.99/mo (500 req), Pro $24.99/mo (2,500 req)."
      },
      "rateLimit": "Based on plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://objectcut.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.693Z",
      "verifiedStatus": 200,
      "latencyMs": 611
    },
    {
      "id": "pexels",
      "name": "Pexels API",
      "provider": "Pexels",
      "category": "entertainment",
      "description": "Free stock photos & videos you can use everywhere. Browse millions of high-quality royalty free stock images & copyright free pictures. No attribution required.",
      "longDescription": "Free stock photos & videos you can use everywhere. Browse millions of high-quality royalty free stock images & copyright free pictures. No attribution required.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.pexels.com",
      "docsUrl": "https://www.pexels.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for commercial and personal use. No paid API tiers; attribution encouraged."
      },
      "rateLimit": "200 req/hour · 20,000 req/month",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.pexels.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 30,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.612Z",
      "verifiedStatus": 503,
      "latencyMs": 516
    },
    {
      "id": "photoroom",
      "name": "PhotoRoom API",
      "provider": "PhotoRoom",
      "category": "entertainment",
      "description": "Create product and portrait pictures using only your phone. Remove background, change background and showcase products.",
      "longDescription": "Create product and portrait pictures using only your phone. Remove background, change background and showcase products.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.photoroom.com",
      "docsUrl": "https://www.photoroom.com/api/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 10 req/month. Pro from $9.99/mo. Enterprise pricing available."
      },
      "rateLimit": "10 req/min (free); higher on paid plans",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.photoroom.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.701Z",
      "verifiedStatus": 200,
      "latencyMs": 588
    },
    {
      "id": "remove-bg",
      "name": "Remove.bg API",
      "provider": "Remove.bg",
      "category": "entertainment",
      "description": "Remove image backgrounds automatically in 5 seconds with just one click. Don't spend hours manually picking pixels. Upload your photo now & see the magic.",
      "longDescription": "Remove image backgrounds automatically in 5 seconds with just one click. Don't spend hours manually picking pixels. Upload your photo now & see the magic.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://www.remove.bg",
      "docsUrl": "https://www.remove.bg/api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free: 50 previews/mo. Paid from $0.10/image. API credits: $9 for 125 images."
      },
      "rateLimit": "500 req/hour (paid)",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.remove.bg'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 41,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:04.903Z",
      "verifiedStatus": 200,
      "latencyMs": 645
    },
    {
      "id": "city-bikes",
      "name": "City Bikes API",
      "provider": "City Bikes",
      "category": "entertainment",
      "description": "City Bikes around the world",
      "longDescription": "City Bikes around the world",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://api.citybik.es",
      "docsUrl": "https://api.citybik.es/v2/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://api.citybik.es'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 45,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:09.063Z",
      "verifiedStatus": 200,
      "latencyMs": 3879
    },
    {
      "id": "catch-the-show",
      "name": "Catch The Show API",
      "provider": "Catch The Show",
      "category": "entertainment",
      "description": "REST API for next-episode.net",
      "longDescription": "REST API for next-episode.net",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://catchtheshow.herokuapp.com",
      "docsUrl": "https://catchtheshow.herokuapp.com/api/documentation",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://catchtheshow.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:08.228Z",
      "verifiedStatus": 404,
      "latencyMs": 1462
    },
    {
      "id": "dailymotion",
      "name": "Dailymotion API",
      "provider": "Dailymotion",
      "category": "entertainment",
      "description": "Dailymotion Developer API",
      "longDescription": "Dailymotion Developer API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "oauth2",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.dailymotion.com",
      "docsUrl": "https://developer.dailymotion.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer account. No paid API tiers for video metadata access."
      },
      "rateLimit": "10,000 req/hour",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.dailymotion.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 20,
      "scorePricing": 28,
      "score": 20,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:13.763Z",
      "verifiedStatus": 200,
      "latencyMs": 6892
    },
    {
      "id": "game-of-thrones-quotes",
      "name": "Game of Thrones Quotes API",
      "provider": "Game of Thrones Quotes",
      "category": "entertainment",
      "description": "A free API to retrieve some quotes of Game of Thrones!",
      "longDescription": "A free API to retrieve some quotes of Game of Thrones!",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://gameofthronesquotes.xyz",
      "docsUrl": "https://gameofthronesquotes.xyz/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://gameofthronesquotes.xyz'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 40,
      "scorePricing": 90,
      "score": 46,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:09.622Z",
      "verifiedStatus": 200,
      "latencyMs": 2222
    },
    {
      "id": "motivational-quotes",
      "name": "Motivational Quotes API",
      "provider": "Motivational Quotes",
      "category": "entertainment",
      "description": "Random Motivational Quotes",
      "longDescription": "Random Motivational Quotes",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://nodejs-quoteapp.herokuapp.com",
      "docsUrl": "https://nodejs-quoteapp.herokuapp.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://nodejs-quoteapp.herokuapp.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 30,
      "scorePricing": 90,
      "score": 42,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:09.181Z",
      "verifiedStatus": 404,
      "latencyMs": 1757
    },
    {
      "id": "simkl",
      "name": "Simkl API",
      "provider": "Simkl",
      "category": "entertainment",
      "description": "Movie, TV and Anime data",
      "longDescription": "Movie, TV and Anime data",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://simkl.docs.apiary.io",
      "docsUrl": "https://simkl.docs.apiary.io",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with developer account. No paid API tiers for movie/TV tracking data."
      },
      "rateLimit": "1 req/s",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://simkl.docs.apiary.io'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 32,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:09.131Z",
      "verifiedStatus": 200,
      "latencyMs": 1576
    },
    {
      "id": "swapi-graphql",
      "name": "SWAPI GraphQL API",
      "provider": "SWAPI GraphQL",
      "category": "entertainment",
      "description": "Star Wars GraphQL API",
      "longDescription": "Star Wars GraphQL API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://graphql.org",
      "docsUrl": "https://graphql.org/swapi-graphql",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://graphql.org'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 60,
      "scorePricing": 90,
      "score": 51,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:09.299Z",
      "verifiedStatus": 200,
      "latencyMs": 1689
    },
    {
      "id": "the-lord-of-the-rings",
      "name": "The Lord of the Rings API",
      "provider": "The Lord of the Rings",
      "category": "entertainment",
      "description": "The Lord of the Rings API",
      "longDescription": "The Lord of the Rings API",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for auth details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://the-one-api.dev",
      "docsUrl": "https://the-one-api.dev/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free with One API account. Lord of the Rings data; no paid tiers."
      },
      "rateLimit": "100 req/10min",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://the-one-api.dev'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 40,
      "scorePricing": 28,
      "score": 26,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:10.079Z",
      "verifiedStatus": 200,
      "latencyMs": 2446
    },
    {
      "id": "music-machinery",
      "name": "Music Machinery API",
      "provider": "Music Machinery",
      "category": "entertainment",
      "description": "Music Machinery API. See documentation for full details.",
      "longDescription": "Music Machinery API. See documentation for full details.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://musicmachinery.com",
      "docsUrl": "https://musicmachinery.com/music-apis/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for non-commercial use. Various music data APIs; check individual endpoint docs."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://musicmachinery.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 38,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:10.498Z",
      "verifiedStatus": 200,
      "latencyMs": 814
    },
    {
      "id": "one-music",
      "name": "One Music API",
      "provider": "One Music",
      "category": "entertainment",
      "description": "One Music API. See documentation for full details.",
      "longDescription": "One Music API. See documentation for full details.",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://www.onemusicapi.com",
      "docsUrl": "http://www.onemusicapi.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free for non-commercial use. Commercial licensing required for commercial apps."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.onemusicapi.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 34,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:11.916Z",
      "verifiedStatus": 200,
      "latencyMs": 1673
    },
    {
      "id": "rhapsody",
      "name": "Rhapsody API",
      "provider": "Rhapsody",
      "category": "entertainment",
      "description": "Access metadata, user’s entire library of music and do much more. | N/A |",
      "longDescription": "Access metadata, user’s entire library of music and do much more. | N/A |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://developer.rhapsody.com",
      "docsUrl": "https://developer.rhapsody.com/",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Legacy API (Napster). Paid licensing required for commercial streaming integration."
      },
      "rateLimit": "Based on license",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://developer.rhapsody.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 25,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:18.972Z",
      "verifiedStatus": 503,
      "latencyMs": 1396
    },
    {
      "id": "tunefind",
      "name": "TuneFind API",
      "provider": "TuneFind",
      "category": "entertainment",
      "description": "Allows developers to enhance their services with song, show, and movie data from TuneFind. | N/A |",
      "longDescription": "Allows developers to enhance their services with song, show, and movie data from TuneFind. | N/A |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://www.tunefind.com",
      "docsUrl": "http://www.tunefind.com/api",
      "hasFreeTier": false,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Paid. Music placement and licensing data for TV/film; commercial licensing required."
      },
      "rateLimit": "Based on license",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.tunefind.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.137Z",
      "verifiedStatus": 200,
      "latencyMs": 1417
    },
    {
      "id": "chartlyrics-lyrics-api",
      "name": "ChartLyrics Lyrics API API",
      "provider": "ChartLyrics Lyrics API",
      "category": "entertainment",
      "description": "Allows users to search for lyrics using the artist name, song title, or lyric text. | N/A |",
      "longDescription": "Allows users to search for lyrics using the artist name, song title, or lyric text. | N/A |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://www.chartlyrics.com",
      "docsUrl": "http://www.chartlyrics.com/api.aspx",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. No authentication required; no paid tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://www.chartlyrics.com'",
      "sampleResponse": "{}",
      "scoreDepth": 18,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 27,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:18.851Z",
      "verifiedStatus": 404,
      "latencyMs": 979
    },
    {
      "id": "lololyrics-api",
      "name": "Lololyrics API API",
      "provider": "Lololyrics API",
      "category": "entertainment",
      "description": "Given an artist and track name, obtains its lyrics and metadata such as the year released and album art. Specializes more in electronic dance music genres such as hardstyle. | N/A |",
      "longDescription": "Given an artist and track name, obtains its lyrics and metadata such as the year released and album art. Specializes more in electronic dance music genres such as hardstyle. | N/A |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://api.lololyrics.com",
      "docsUrl": "http://api.lololyrics.com/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. No authentication required for lyrics metadata."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://api.lololyrics.com'",
      "sampleResponse": "{}",
      "scoreDepth": 25,
      "scoreLatency": 30,
      "scorePricing": 28,
      "score": 27,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:19.770Z",
      "verifiedStatus": 404,
      "latencyMs": 1646
    },
    {
      "id": "magic-the-gathering",
      "name": "Magic The Gathering API",
      "provider": "Magic The Gathering",
      "category": "entertainment",
      "description": "Magic The Gathering Game Information                                                                         |       No        |  No   | Unknown |",
      "longDescription": "Magic The Gathering Game Information                                                                         |       No        |  No   | Unknown |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "http://magicthegathering.io",
      "docsUrl": "http://magicthegathering.io/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open. No paid tiers; community-maintained MTG card data."
      },
      "rateLimit": "Not enforced; fair use requested",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'http://magicthegathering.io'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 60,
      "scorePricing": 28,
      "score": 35,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:23.309Z",
      "verifiedStatus": 200,
      "latencyMs": 1472
    },
    {
      "id": "thegamestracker",
      "name": "TheGamestracker API",
      "provider": "TheGamestracker",
      "category": "entertainment",
      "description": "Game servers informations in JSON format                                                                     |    apiKey     |  Yes  |   Yes   |",
      "longDescription": "Game servers informations in JSON format                                                                     |    apiKey     |  Yes  |   Yes   |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://thegamestracker.com",
      "docsUrl": "https://thegamestracker.com/server-info-api",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Freemium. Free tier available; paid plans for higher usage."
      },
      "rateLimit": "Varies by plan",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://thegamestracker.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 38,
      "scorePricing": 28,
      "score": 28,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:22.451Z",
      "verifiedStatus": 403,
      "latencyMs": 613
    },
    {
      "id": "potter-db",
      "name": "Potter DB API",
      "provider": "Potter DB",
      "category": "entertainment",
      "description": "Data from the Harry Potter Universe: Characters, Movies, Books, Spells and Potions                               |    No    |  Yes  | Unknown |",
      "longDescription": "Data from the Harry Potter Universe: Characters, Movies, Books, Spells and Potions                               |    No    |  Yes  | Unknown |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://potterdb.com",
      "docsUrl": "https://potterdb.com",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free and open-source. No paid tiers; community-maintained Harry Potter API."
      },
      "rateLimit": "Not enforced; reasonable use requested",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://potterdb.com'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:24.530Z",
      "verifiedStatus": 200,
      "latencyMs": 588
    },
    {
      "id": "shoof-aflam",
      "name": "Shoof Aflam API",
      "provider": "Shoof Aflam",
      "category": "entertainment",
      "description": "Arabic streaming guide — search 14,000+ movies/series, get platform availability across 18 services in the Arab world |    No    |  Yes  |   Yes   |",
      "longDescription": "Arabic streaming guide — search 14,000+ movies/series, get platform availability across 18 services in the Arab world |    No    |  Yes  |   Yes   |",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "api-key",
      "authDescription": "See documentation for authentication details",
      "authExample": "Authorization: Bearer YOUR_TOKEN",
      "baseUrl": "https://shoofaflam.tv",
      "docsUrl": "https://shoofaflam.tv/api-docs/",
      "hasFreeTier": true,
      "pricing": {
        "model": "subscription",
        "startingCentsPerMonth": null,
        "freeQuota": null,
        "tiers": [],
        "details": "Free Arabic streaming content API. No paid API tiers."
      },
      "rateLimit": "Not officially published",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://shoofaflam.tv'",
      "sampleResponse": "{}",
      "scoreDepth": 21,
      "scoreLatency": 76,
      "scorePricing": 28,
      "score": 40,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:24.847Z",
      "verifiedStatus": 200,
      "latencyMs": 883
    },
    {
      "id": "gamerpower",
      "name": "GamerPower API",
      "provider": "GamerPower",
      "category": "entertainment",
      "description": "Game Giveaways Tracker",
      "longDescription": "Game Giveaways Tracker",
      "color": "#f97316",
      "tags": [
        "entertainment"
      ],
      "authType": "none",
      "authDescription": "No authentication required",
      "authExample": "# No auth required",
      "baseUrl": "https://www.gamerpower.com",
      "docsUrl": "https://www.gamerpower.com/api-read",
      "hasFreeTier": true,
      "pricing": {
        "model": "freemium",
        "startingCentsPerMonth": 0,
        "freeQuota": {
          "amount": null,
          "unit": null,
          "period": "month",
          "note": "Completely free"
        },
        "tiers": [],
        "details": "Free — open public API, no authentication required."
      },
      "rateLimit": "See documentation",
      "endpoints": [
        {
          "method": "GET",
          "path": "/",
          "description": "See documentation for endpoint reference"
        }
      ],
      "sampleRequest": "curl 'https://www.gamerpower.com'",
      "sampleResponse": "{}",
      "scoreDepth": 14,
      "scoreLatency": 76,
      "scorePricing": 90,
      "score": 55,
      "reachable": true,
      "verifiedAt": "2026-03-29T20:20:25.074Z",
      "verifiedStatus": 200,
      "latencyMs": 786
    }
  ]
}